* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Courier Prime', 'Courier New', monospace;
            background-color: #000000;
            color: #fff;
            overflow-x: hidden;
        }

        /* 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;
        }

        /* Hero Section */
        #main {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg-image {
            position: absolute;
            inset: 0;
            background-image: url('../public/assets/images/hero-bg.png');
            background-size: cover;
            background-position: center;
            opacity: 0.6;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            backdrop-filter: blur(2px);
            padding: 122px 23px;
        }

        .controller-icon {
            position: relative;
            margin: 0 auto 20px;
            width: 80px;
            height: 80px;
            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;
        }

        .hero-logo {
            font-size: 80px;
            font-weight: 700;
            letter-spacing: 8px;
            line-height: 1;
            margin-bottom: 30px;
            animation: flicker 3s infinite alternate;
        }

        .hero-tagline {
            color: #027700;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 4px;
            margin-top: 30px;
        }

        /* About Section */
        #about {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 100px 45px;
            overflow: hidden;
        }

        .shape-about {
            position: absolute;
            left: -15%;
            top: -10%;
            width: 50%;
            height: 120%;
            background: linear-gradient(180deg, #16defc 0%, #4b80f5 100%);
            transform: skew(-25deg);
            opacity: 0.6;
            z-index: 1;
            animation: pulse 10s infinite, shape-slide-left 3s ease forwards;
        }

        .about-content {
            position: relative;
            z-index: 2;
            max-width: 638px;
        }

        .section-text {
            display: flex;
            flex-direction: column;
            gap: 18px;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .section-text.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .section-title {
            color: #16defc;
            font-size: 80px;
            font-weight: 700;
            letter-spacing: 8px;
            line-height: 1;
            padding: 14px 48px;
        }

        .section-paragraph {
            color: #027700;
            font-size: 30px;
            font-weight: 400;
            letter-spacing: 2px;
            line-height: 1.195;
            max-width: 100%;
        }

        .btn-primary {
            position: relative;
            width: 500px;
            height: 114px;
            background: linear-gradient(90deg, #16DEFC 0%, #6552F1 89.04%);
            background-size: contain;
            border: none;
            cursor: pointer;
            transition: transform 0.2s ease;
            transform: skew(-18deg);
        }

        .btn-primary:hover {
            transform: scale(1.05) skew(-18deg);
        }

        .btn-text {
            color: #0a062a;
            font-family: 'Courier Prime', 'Courier New', monospace;
            font-size: 40px;
            font-weight: 700;
            letter-spacing: 2px;
            line-height: 1.195;
            transform: skew(18deg);
        }

        /* Contact Section */
        #contact {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 100px 90px;
            overflow: hidden;
        }

        .shape-contact {
            position: absolute;
            right: -15%;
            top: -10%;
            width: 50%;
            height: 120%;
            background: linear-gradient(180deg, #ba01d0 0%, #4f0058 100%);
            transform: skew(-25deg);
            opacity: 0.6;
            z-index: 1;
            animation: pulse 10s infinite, shape-slide-right 3s ease forwards;
        }

        .contact-content {
            position: relative;
            z-index: 2;
            max-width: 638px;
        }

        /* Footer */
        footer {
            background-color: rgba(10, 10, 10, 0.59);
            padding: 43px 45px;
        }

        .footer-inner {
            max-width: 1440px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            gap: 40px;
        }

        .footer-section {
            flex: 1;
        }

        .footer-heading {
            color: #16defc;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 4px;
            margin-bottom: 20px;
        }

        .footer-text {
            color: #027700;
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 2px;
            line-height: 1.195;
            margin-bottom: 10px;
        }

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

            nav a {
                font-size: 20px;
            }
            .shape-about {
                width: 45%;
                left: -25%; 
            }
            .shape-contact {
                width: 45%;
                right: -20%;
            }
        }

        /* Responsive Design - Tablet */
        @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;
            }
            .shape-about {
                width: 40%;
                left: -40%; 
            }
            .shape-contact {
                width: 40%;
                right: -30%;
            }
        }

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

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

        /* Responsive Design - Mobile */
        @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;
            }

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

            nav {
                display: block !important;
            }

            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;
            }

            .hero-logo {
                font-size: 40px;
                letter-spacing: 8px;
            }

            .hero-tagline {
                font-size: 16px;
            }

            .hero-content {
                padding: 80px 20px;
            }

            #about,
            #contact {
                padding: 60px 20px;
                justify-content: center;
            }

            .shape-about {
                left: -600px;
                top: -100px;
                width: 500px;
                height: 800px;
            }

            .shape-contact {
                right: -600px;
                top: 0;
                width: 500px;
                height: 1000px;
            }

            .section-title {
                font-size: 40px;
                padding: 10px 20px;
            }

            .section-paragraph {
                font-size: 18px;
                max-width: 100%;
            }

            .btn-primary {
                width: 100%;
                max-width: 350px;
                height: 80px;
            }

            .btn-text {
                font-size: 24px;
            }

            .footer-inner {
                flex-direction: column;
                gap: 30px;
            }

            .footer-heading {
                font-size: 14px;
            }

            .footer-text {
                font-size: 14px;
            }
        }

        /* Animations */
        @keyframes flicker {
            0%,
            18%,
            22%,
            25%,
            53%,
            57%,
            100% {
                filter: brightness(1);
            }
            20%,
            24%,
            55% {
                filter: brightness(0.8);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes pulse {
            0%,
            100% {
                opacity: 0.6;
            }
            50% {
                opacity: 1;
            }
        }

        @keyframes shape-slide-left {
            from {
                opacity: 0;
                transform: translateX(-100vw) skew(-25deg);
            }
            to {
                opacity: 0.6;
                transform: translateX(0) skew(-25deg);
            }
        }

        @keyframes shape-slide-right {
            from {
                opacity: 0;
                transform: translateX(100vw) skew(-25deg);
            }
            to {
                opacity: 0.6;
                transform: translateX(0) skew(-25deg);
            }
        }

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

        .slide-right.animated {
            opacity: 1;
            transform: translateX(0);
        }

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

        .slide-left.animated {
            opacity: 1;
            transform: translateX(0);
        }