        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', 'Arial', sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }

        .hero-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: flex-end;
            padding-bottom: 100px;
        }

        .background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), 
                        url('https://media.discordapp.net/attachments/1329600543546540063/1437810505405169704/header.jpg?ex=691498e1&is=69134761&hm=43174b4c67f5643c0a976c00672b1b86aca8169a583fbf3a1f846246a7db8bbf&=&format=webp&width=1522&height=856');
            background-size: cover;
            background-position: center;
            z-index: -1;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 35px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(0, 0, 0, 0);
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(0, 0, 0, 0.95);
            padding: 25px 80px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        }

        .logo {
            font-size: 42px;
            font-weight: 900;
            font-style: italic;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            line-height: 0.9;
        }

        .logo span {
            display: block;
            font-size: 46px;
        }

        nav {
            display: flex;
            gap: 25px;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 12px 30px;
            border: 2px solid rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        nav a:hover {
            background: #fff;
            color: #000;
            transform: translateY(-2px);
        }

        .hero-content {
            padding-left: 80px;
            max-width: 1000px;
        }

        .main-title {
            font-size: 85px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 20px;
            letter-spacing: 5px;
            text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9);
            line-height: 1;
        }

        .description {
            font-size: 22px;
            line-height: 1.7;
            margin-bottom: 18px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
            font-weight: 300;
        }

        .server-ip {
            font-size: 20px;
            font-weight: 700;
            margin-top: 30px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
        }

        .server-ip span {
            color: #4CAF50;
            font-family: 'Courier New', monospace;
            text-shadow: 0 0 15px rgba(76, 175, 80, 0.7);
        }

        .stats-section {
            background: #0a0a0a;
            padding: 80px 80px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .stats-title {
            font-size: 48px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 60px;
            text-align: center;
            letter-spacing: 3px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .stat-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
            padding: 40px 30px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .stat-icon {
            font-size: 48px;
            margin-bottom: 20px;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
        }

        .stat-value {
            font-size: 56px;
            font-weight: 900;
            color: #4CAF50;
            margin-bottom: 10px;
            text-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
        }

        .stat-label {
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.7);
        }

        /* === FOOTER === */
        footer {
            background: #050505;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 60px 80px 30px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-logo {
            font-size: 38px;
            font-weight: 900;
            font-style: italic;
            color: #fff;
            text-transform: uppercase;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
        }

        .footer-logo span {
            color: #4CAF50;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #4CAF50;
            text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
        }

        .footer-bottom {
            text-align: center;
            margin-top: -60px;
            padding-top: 20px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        @media (max-width: 768px) {
            header {
                padding: 25px 30px;
                flex-direction: column;
                gap: 20px;
                background: rgba(0, 0, 0, 0.9);
            }

            header.scrolled {
                padding: 20px 30px;
            }

            .logo {
                font-size: 28px;
            }

            .logo span {
                font-size: 32px;
            }

            nav {
                gap: 15px;
            }

            nav a {
                font-size: 12px;
                padding: 10px 20px;
            }

            .hero-content {
                padding-left: 30px;
                padding-right: 30px;
            }

            .main-title {
                font-size: 42px;
            }

            .description {
                font-size: 16px;
            }

            .server-ip {
                font-size: 14px;
            }

            .stats-section {
                padding: 60px 30px;
            }

            .stats-title {
                font-size: 32px;
                margin-bottom: 40px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .stat-card {
                padding: 30px 20px;
            }

            .stat-value {
                font-size: 42px;
            }

            .stat-label {
                font-size: 14px;
            }

            footer {
                padding: 50px 30px 25px;
            }

            .footer-container {
                flex-direction: column;
                text-align: center;
                gap: 25px;
            }
            .footer-bottom a {
               color: #4caf50;
            }