html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
    background: #0d0d0d;
    background-image: url('assets/HeroGra.webp'), url('assets/Small.webp'); 
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-blend-mode: normal, soft-light;
}

h1 {
    font-family: 'Geist';
    font-style: normal;
    font-weight: 500;
    font-size: 160px;
    line-height: 135px;
    text-align: center;
    letter-spacing: -0.05em;
    color: #FFEFFF;
    margin-bottom: -10px;
    margin-top: 60px;
}

p {
    font-family: 'Geist';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 25px;
    text-align: center;
    letter-spacing: -0.05em;
    color: #FFEFFF;
    opacity: 0.5;
    margin-bottom: -4px;
}

.project-button {
    box-sizing: border-box;
    width: 146px;
    height: 45px;
    margin: 20px auto;
    background: linear-gradient(180deg,
            rgba(29, 29, 29, 0.46) 0%,
            rgba(0, 0, 0, 0.46) 100%);
    border: 0.5px solid rgba(255, 255, 255, 0.23);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFEFFF;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-button:hover {
    background: linear-gradient(180deg,
            rgba(39, 39, 39, 0.56) 0%,
            rgba(10, 10, 10, 0.56) 100%);
    border-color: rgba(255, 255, 255, 0.33);
}

.project-button:active {
    transform: scale(0.98);
}

.code-editor {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 20px;
    width: 95vw;
    max-width: 700px;
    margin: 20px auto;
    font-family: 'Fira Code', monospace;
    color: #fff;
    position: relative;
    box-sizing: border-box;
    opacity: 0;
    background: rgba(20, 0, 42, 0.05);
    box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    animation: fadeIn 0.5s forwards;
    margin-top: 50px;
    border: 1px solid rgba(255, 255, 255, 0.200);
}


.editor-header {
    display: flex;
    gap: 8px;
    padding: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.code-snippet {
    min-height: 180px;
    white-space: pre;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    tab-size: 2;
    overflow-x: auto;
}

.team-code-snippet {
    min-height: 150px;
    white-space: pre;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    tab-size: 2;
    overflow-x: auto;
}

.comment {
    color: #6A9955;
}

.keyword {
    color: #569CD6;
}

.string {
    color: #CE9178;
}

.property {
    color: #9CDCFE;
}

.function {
    color: #DCDCAA;
}

.number {
    color: #B5CEA8;
}

.operator {
    color: #D4D4D4;
}

.punctuation {
    color: #D4D4D4;
}

.typed-cursor {
    color: #569CD6;
    font-weight: bold;
    animation: blink 1s infinite;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

/* Center line */
.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, #B27C66, #CAA8F5);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Container around content */
.container {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

/* The circles on the timeline - FIXED POSITION */
.container::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #FFEFFF;
    border: 4px solid #363136;
    border-radius: 50%;
    top: 50%;
    z-index: 2;
}

/* Left container dot position */
.left::after {
    right: -11.5px;
    transform: translateY(-50%);
}

/* Right container dot position */
.right::after {
    left: -11.5px;
    transform: translateY(-50%);
}

/* Place the container to the left */
.left {
    left: 0;
    padding-right: 80px;
}

/* Place the container to the right */
.right {
    left: 50%;
    padding-left: 80px;
}

/* The actual content */
.content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content img {
    max-width: 100%;
}

/* Responsive layout */
@media screen and (max-width: 767px) {
    .timeline::after {
        left: 31px;
        transform: none;
    }

    .container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .container::after {
        left: 20px;
        right: auto;
    }

    .right {
        left: 0%;
    }

    .right::after {
        left: 20px;
    }
}

.mission {
    background: #1e1e1e;
    border-radius: 8px;
    width: 95vw;
    max-width: 700px;
    margin: 20px auto;
    font-family: 'Fira Code', monospace;
    color: #fff;
    position: relative;
    box-sizing: border-box;
    opacity: 0;
    background: rgba(20, 0, 42, 0.05);
    box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    animation: fadeIn 0.5s forwards;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.200);
}

.mission img {
    width: 800px
}

h3 {
    font-family: "Geist";
    font-style: normal;
    font-weight: 500;
    font-size: 60px;
    line-height: 135px;
    text-align: center;
    letter-spacing: -0.05em;
    color: #FFEFFF;
    margin-bottom: -30px;


}