body {
    margin: 0;
    padding: 0;
    background: #0a0a0a;
    display: flex;
    min-height: 100vh;
    font-family: 'Courier New', monospace;
    flex-direction: column;
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

/* header {
    background-color: rgba(10, 10, 10, 0.59);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    z-index: 1000;
    align-items: center;
    display: flex;
    justify-content: center;
}

.header-inner {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 40px 45px;
    gap: 84px;
    width: 100%;
}

.header-logo {
    margin: 0;
}

nav {
    font-size: 30px;
    display: flex;
    gap: 84px;
    color: #027700;

}

nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li a {
    text-decoration: none;
    color: inherit;
} */
 /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: rgba(10, 10, 10, 0.59);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 40px 45px;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1440px;
            margin: 0 auto;
        }

        .header-logo {
            font-size: 80px;
            font-weight: 700;
            letter-spacing: 8px;
            line-height: 1;
            white-space: nowrap;
            animation: flicker 3s infinite alternate;
        }

        .game {
            color: #00ffff;
            text-shadow: 0 0 50px #00d8f6;
        }

        .craft {
            color: #ff00ff;
            text-shadow: 0 0 50px #e23bf6;
        }

        nav ul {
            display: flex;
            gap: 40px;
            list-style: none;
            align-items: center;
            justify-content: flex-end;
        }

        nav a {
            color: #027700;
            text-decoration: none;
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 4px;
            transition: opacity 0.3s;
        }

        nav a:hover {
            opacity: 0.7;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .mobile-menu-btn img {
            width: 46px;
            height: 42px;
        }

#main {
    /* margin-top: 250px; */
    flex: 0.75;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 100vw;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}

.logo-container {
    max-width: 100vw;
    position: relative;
    text-align: center;
    padding-top: 100px;
}

.logo-text {
    font-size: 100px;
    font-weight: bold;
    letter-spacing: 8px;
    position: relative;
    display: inline-block;
    animation: flicker 3s infinite alternate;
}

.header-logo {
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 8px;
    animation: flicker 3s infinite alternate;
}

.game {
    color: #00ffff;
    text-shadow: 0 0 50px #00d8f6;
}

.craft {
    color: #ff00ff;
    text-shadow: 0 0 50px #e23bf6;
}

.tagline {
    color: #027700;
    font-size: 16px;
    letter-spacing: 4px;
    margin-top: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #027700;

}

.icon {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    overflow: visible;
}

.controller {
    fill: none;
    stroke: #ffff00;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px #ffff00) drop-shadow(0 0 20px #ffff00);
    animation: float 3s ease-in-out infinite;
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    min-height: 100%;
    background-image:
            linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 0, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

/* Containers */
.about-content {
    margin-top: 25vh;
    display: flex;
    /*flex-direction: column;*/
    /*align-items: center;*/
    justify-content: space-between;
}

.section_text {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-right: 10vw;
    margin-left:10vw;
    align-items: flex-start;
}

.section_title {
    color: #16defc;
    font-size: 5vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 8px;
}

.section_paragraphs {
    color: #027700;
    /*max-width: 33vw;*/
    font-size: 3vh;
    font-style: normal;
    font-weight: 400;
    line-height: 119.548%;
    /* 35.864px */
    letter-spacing: 2px;
    text-align: left;
}

.default_btn_text {
    color: #0A062A;
    text-align: center;
    display: block;
    transform: skew(25deg);

    /* Button text */
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 119.548%;
    /* 47.819px */
    letter-spacing: 2px;
}

/* Sections */
/*#about {*/
/*    background-color: rgba(10, 10, 10, 1);*/
/*    text-align: center;*/
/*    color: #ffffff;*/
/*    width: 100%;*/
/*    z-index: 500;*/
/*}*/

/* Shapes */
.default_btn {
    margin: 40px;
    width: 500px;
    height: 114px;
    background: linear-gradient(90deg, #16DEFC 0%, #6552F1 89.04%);
    transform: skew(-25deg);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.default_btn:hover {
    transform: scale(1.05) skew(-25deg);
}

.shape {
    position:absolute;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(0deg, #16DEFC, #4B80F5);
    margin-left: -60%;
    margin-right: auto;
    transform: rotate(-18deg);
    animation: pulse 10s infinite;
    top:0;
}
/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
.shape_slide_right {
    opacity: 0;
    transform: translateX(1400px) rotate(-18deg);
    transition: all 5s ease;
}
.shape_slide_right.animated {
    opacity: 1;
    transform: translateX(0) rotate(-18deg);
}
.shape_slide_left {
    opacity: 0;
    transform: translateX(0) rotate(-18deg);
    transition: all 1.5s ease;
}
.shape_slide_left.animated {
    opacity: 1;
    transform: translateX(-1400px) rotate(-18deg);
}

.slide_left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide_left.animated {
    opacity: 1;
    transform: translateX(0);
}

.slide_right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide_right.animated {
    opacity: 1;
    transform: translateX(0);
}

.shape_slide_left {
    opacity: 0;
    transform: translateX(-1100px) skew(-18deg);
    transition: all 3s ease;
}

.shape_slide_left.animated {
    opacity: 1;
    transform: translateX(0) skew(-18deg);
}


.names {
    color: #000000;
    font-weight: bold;
}

.name {
    transition: all 0.1s linear;
    cursor:pointer;
}

.name:hover {
    transform:translateX(2vw);
}

.members {
    color: #ff00ff;
}

.member-info-text {
    font-size: 2vh;
}

/* RESPONSIVE MEDIA QUERIES */

/* Desktop Large - 1400px and below */
@media (max-width: 1400px) {
    nav ul {
        gap: 32px;
    }

    nav a {
        font-size: 20px;
    }
}

/* Tablets - 1024px and below */
@media (max-width: 1024px) {
    header {
        padding: 30px 30px;
    }

    .header-logo {
        font-size: 60px;
        letter-spacing: 6px;
    }

    nav ul {
        gap: 24px;
    }

    nav a {
        font-size: 18px;
    }
}

/* Medium - 900px and below */
@media (max-width: 900px) {
    nav ul {
        gap: 16px;
    }

    nav a {
        font-size: 16px;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    header {
        padding: 15px 15px;
        height: auto;
    }

    .header-inner {
        width: 100%;
        padding: 0;
    }

    .header-logo {
        font-size: 40px;
        letter-spacing: 4px;
        white-space: nowrap;
        flex: 1;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgba(10, 10, 10, 0.98);
        height: 0;
        max-height: none;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        padding-top: 0;
        transition: height 0.35s ease, opacity 0.25s ease;
        z-index: 2000;
        display: block !important;
    }

    nav.active {
        height: 100vh;
        padding-top: 80px;
        opacity: 1;
        pointer-events: auto;
        overflow-y: auto;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        align-items: flex-start;
        width: 100%;
    }

    nav a {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .mobile-menu-btn {
        display: block;
        margin-left: auto;
        padding: 5px;
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-menu-btn img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Mobile styles go here */
    .about-content {
        flex-direction: column;
        align-items: center;
        gap:50px;
    }

    .section_title {
        font-size: 10vw;
    }

    .section_paragraphs {
        font-size: 4vw;
        overflow: hidden;
    }

    .section_text {
        width:60vw;
    }
    
    .shape {
        height: 140vh;
    }
}



@keyframes flicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        filter: brightness(1);
    }

    20%,
    24%,
    55% {
        filter: brightness(0.8);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0px);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }
}