        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
			font-family: 'Cinzel', 'Georgia', serif;
			background: url('https://i.imgur.com/2C7jyA6.jpeg') center/cover no-repeat fixed;
			color: #e0e6ed;
			overflow-x: hidden;
		}

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 14, 26, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(100, 150, 255, 0.2);
            z-index: 1000;
            padding: 0;
        }

        nav {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 3rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #6ba3e8;
            text-shadow: 0 0 15px rgba(107, 163, 232, 0.6);
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: #d0dff0;
            text-decoration: none;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: #6ba3e8;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .language-box {
            width: 45px;
            height: 45px;
            border: 2px solid #4a6b9e;
            background: rgba(20, 30, 50, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.5rem;
        }

        .language-box:hover {
            border-color: #6ba3e8;
            background: rgba(107, 163, 232, 0.1);
        }

        .control-panel-btn {
            background: linear-gradient(135deg, #5577aa, #6ba3e8);
			text-decoration: none;
            color: white;
            padding: 0.8rem 1.8rem;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1.5px;
            font-size: 0.85rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(107, 163, 232, 0.3);
            clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
            font-family: 'Cinzel', serif;
        }

        .control-panel-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(107, 163, 232, 0.5);
        }

        /* Hero Section */
       .hero {
			position: relative;
			height: 100vh;
			display: flex;
			align-items: center;
			justify-content: center;
			overflow: hidden;
			background: url('https://i.imgur.com/2C7jyA6.jpeg') center/cover no-repeat;
		}

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(107, 163, 232, 0.05) 0%, transparent 70%);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
        }

        .hero-title {
            font-size: 8rem;
            font-weight: 700;
            color: #6ba3e8;
            text-shadow: 0 0 30px rgba(107, 163, 232, 0.8),
                         0 0 60px rgba(107, 163, 232, 0.4),
                         0 0 90px rgba(107, 163, 232, 0.2);
            margin-bottom: 3rem;
            letter-spacing: 12px;
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        @keyframes titleGlow {
            from {
                text-shadow: 0 0 30px rgba(107, 163, 232, 0.8),
                             0 0 60px rgba(107, 163, 232, 0.4),
                             0 0 90px rgba(107, 163, 232, 0.2);
            }
            to {
                text-shadow: 0 0 40px rgba(107, 163, 232, 1),
                             0 0 80px rgba(107, 163, 232, 0.6),
                             0 0 120px rgba(107, 163, 232, 0.3);
            }
        }

        .start-btn {
            background: linear-gradient(135deg, #5577aa, #6ba3e8);
            color: white;
            padding: 1.3rem 5rem;
            border: none;
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
            box-shadow: 0 8px 25px rgba(107, 163, 232, 0.4);
            font-family: 'Cinzel', serif;
            font-weight: 600;
        }

        .start-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.7s;
        }

        .start-btn:hover::before {
            left: 100%;
        }

        .start-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(107, 163, 232, 0.6);
        }

        /* Status Widget */
        .status-widget {
            position: fixed;
            top: 50%;
            right: 3rem;
            transform: translateY(-50%);
            background: rgba(15, 21, 32, 0.95);
            border: 2px solid #4a6b9e;
            padding: 2rem 2.5rem;
            text-align: center;
            box-shadow: 0 0 30px rgba(107, 163, 232, 0.2);
            z-index: 100;
            min-width: 250px;
        }

        .status-indicator {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            box-shadow: 0 0 15px;
            animation: pulse 2s infinite;
        }

        .status-indicator.online {
            background: #4ade80;
            box-shadow: 0 0 15px #4ade80;
        }

        .status-indicator.offline {
            background: #ff5555;
            box-shadow: 0 0 15px #ff5555;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }

        .status-label {
            font-size: 1.4rem;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
        }

        .status-label.online {
            color: #4ade80;
            text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
        }

        .status-label.offline {
            color: #ff5555;
            text-shadow: 0 0 10px rgba(255, 85, 85, 0.5);
        }

        .server-info {
            border-top: 1px solid rgba(107, 163, 232, 0.2);
            padding-top: 1.5rem;
            margin-top: 1rem;
        }

        .server-info-item {
            margin-bottom: 1rem;
            text-align: left;
        }

        .server-info-label {
            color: #6ba3e8;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.3rem;
            font-weight: 600;
        }

        .server-info-value {
            color: #d0dff0;
            font-family: 'Courier New', monospace;
            font-size: 1rem;
            font-weight: 600;
        }

        /* Decorative light beams */
        .light-beam {
            position: absolute;
            width: 2px;
            height: 300px;
            background: linear-gradient(180deg, 
                transparent 0%, 
                rgba(107, 163, 232, 0.4) 50%,
                transparent 100%);
            animation: beamFloat 8s infinite ease-in-out;
            opacity: 0.3;
        }

        .light-beam:nth-child(1) { left: 15%; animation-delay: 0s; }
        .light-beam:nth-child(2) { left: 35%; animation-delay: 2s; }
        .light-beam:nth-child(3) { left: 65%; animation-delay: 4s; }
        .light-beam:nth-child(4) { left: 85%; animation-delay: 6s; }

        @keyframes beamFloat {
            0%, 100% { transform: translateY(0) scaleY(1); opacity: 0.2; }
            50% { transform: translateY(-50px) scaleY(1.5); opacity: 0.5; }
        }

        /* Particles */
        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #6ba3e8;
            border-radius: 50%;
            animation: particleFloat 15s infinite linear;
            opacity: 0;
            box-shadow: 0 0 4px rgba(107, 163, 232, 0.8);
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100px) translateX(100px);
                opacity: 0;
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 6rem;
            }
        }

        /* Features Section */
        .features {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, #0f1520 0%, #1a2332 50%, #0f1520 100%);
            position: relative;
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            color: #6ba3e8;
            margin-bottom: 4rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            text-shadow: 0 0 20px rgba(107, 163, 232, 0.6);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            background: rgba(20, 30, 50, 0.6);
            border: 2px solid rgba(107, 163, 232, 0.3);
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(107, 163, 232, 0.1), transparent);
            transition: left 0.6s;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: #6ba3e8;
            box-shadow: 0 10px 40px rgba(107, 163, 232, 0.3);
        }

        .feature-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 0 10px rgba(107, 163, 232, 0.5));
        }

        .feature-title {
            font-size: 1.5rem;
            color: #6ba3e8;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .feature-description {
            color: #b0c4de;
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Footer */
        .footer {
            background: linear-gradient(180deg, #0a0e1a 0%, #050810 100%);
            border-top: 2px solid rgba(107, 163, 232, 0.2);
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section {
            color: #b0c4de;
        }

        .footer-title {
            font-size: 1.8rem;
            color: #6ba3e8;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .footer-description {
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #8a9fb5;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(107, 163, 232, 0.1);
            border: 2px solid rgba(107, 163, 232, 0.3);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6ba3e8;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: rgba(107, 163, 232, 0.2);
            border-color: #6ba3e8;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(107, 163, 232, 0.3);
        }

        .footer-heading {
            font-size: 1.3rem;
            color: #6ba3e8;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #8a9fb5;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: #6ba3e8;
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(107, 163, 232, 0.2);
            color: #6a7d94;
        }

        .footer-bottom p {
            margin-bottom: 0.5rem;
        }

        .footer-disclaimer {
            font-size: 0.85rem;
            color: #556677;
            max-width: 800px;
            margin: 1rem auto 0;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem;
            }

            .nav-links {
                display: none;
            }

            .hero-title {
                font-size: 3.5rem;
                letter-spacing: 6px;
            }

            .start-btn {
                padding: 1rem 2.5rem;
                font-size: 1rem;
                letter-spacing: 2px;
            }

            .status-widget {
                right: 1rem;
                padding: 1.5rem;
            }

            .status-count {
                font-size: 3rem;
            }

            .control-panel-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.75rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
		
/* 🔥 item ativo */
.nav-links a.active {
    color: #6ba3e8;
}

/* underline animado */
.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #6ba3e8;
    box-shadow: 0 0 10px rgba(107,163,232,.8);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Esconder barra do Google Translate */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

@media (max-width: 768px) {
    .language-switcher {
        margin-right: 10px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 18px;
    }
}
