@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Exo+2:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    background-attachment: fixed;
    color: #e0e0ff;
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 90%, white, transparent);
    background-size: 200% 200%;
    animation: starfield 200s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes starfield {
    from { background-position: 0 0; }
    to { background-position: 200% 200%; }
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

header {
    background: linear-gradient(to right, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9));
    border-bottom: 3px solid #e74c3c;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(231, 76, 60, 0.5);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #e74c3c;
    text-decoration: none;
    text-shadow: 0 0 20px rgba(231, 76, 60, 0.8), 0 0 40px rgba(231, 76, 60, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 2px;
}

.logo-star {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: rotate-star 20s linear infinite;
    box-shadow: 0 0 30px rgba(231, 76, 60, 0.8);
}

@keyframes rotate-star {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

nav a {
    color: #e0e0ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    background: rgba(52, 152, 219, 0.1);
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

nav a:hover {
    background: rgba(231, 76, 60, 0.2);
    border-color: #e74c3c;
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: rgba(231, 76, 60, 0.2);
    border-radius: 12px;
    border: 2px solid #e74c3c;
}

.hamburger span {
    width: 32px;
    height: 3px;
    background: #e74c3c;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

.hero-section {
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #e74c3c;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(231, 76, 60, 0.8), 0 0 60px rgba(231, 76, 60, 0.4);
    letter-spacing: 3px;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin: 3.5rem 0 1.5rem;
    text-shadow: 0 0 20px rgba(52, 152, 219, 0.6);
    letter-spacing: 2px;
}

h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: #9b59b6;
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #3498db;
    margin-bottom: 3rem;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
}

.action-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.6);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
}

.action-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 50px rgba(231, 76, 60, 0.8);
}

.main-content {
    padding: 4rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3.5rem 0;
}

.info-panel {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.7), rgba(44, 62, 80, 0.7));
    border: 2px solid #3498db;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.info-panel:hover {
    transform: translateY(-10px);
    border-color: #e74c3c;
    box-shadow: 0 15px 50px rgba(231, 76, 60, 0.5);
}

.panel-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 15px rgba(231, 76, 60, 0.6));
}

.game-box {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.8));
    border: 3px solid #e74c3c;
    border-radius: 25px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 15px 60px rgba(0,0,0,0.6), 0 0 50px rgba(231, 76, 60, 0.3);
    backdrop-filter: blur(10px);
}

.game-embed {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
    background: #000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: rgba(52, 73, 94, 0.5);
    border-left: 5px solid #9b59b6;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    background: rgba(52, 73, 94, 0.8);
    border-left-color: #e74c3c;
    transform: translateX(8px);
}

footer {
    background: rgba(15, 12, 41, 0.95);
    border-top: 3px solid #e74c3c;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    backdrop-filter: blur(10px);
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-block h3 {
    font-family: 'Orbitron', sans-serif;
    color: #e74c3c;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-shadow: 0 0 15px rgba(231, 76, 60, 0.5);
}

.footer-block a {
    color: #3498db;
    text-decoration: none;
    display: block;
    margin: 0.75rem 0;
    transition: all 0.3s;
    font-weight: 500;
}

.footer-block a:hover {
    color: #e74c3c;
    padding-left: 10px;
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid #3498db;
    color: #e0e0ff;
    font-weight: 500;
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.95), rgba(44, 62, 80, 0.95));
    border: 4px solid #e74c3c;
    border-radius: 25px;
    padding: 4rem;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 20px 80px rgba(231, 76, 60, 0.8), 0 0 100px rgba(52, 152, 219, 0.5);
    backdrop-filter: blur(15px);
}

.age-modal-content h2 {
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.age-modal-content p {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    color: #e0e0ff;
}

.age-button-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-button {
    padding: 1.2rem 3.5rem;
    border: 3px solid #e74c3c;
    background: transparent;
    color: #e74c3c;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.age-button:hover {
    background: #e74c3c;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.7);
}

.legal-section {
    background: rgba(44, 62, 80, 0.5);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    border-left: 5px solid #3498db;
    backdrop-filter: blur(5px);
}

.legal-section p {
    margin-bottom: 1.2rem;
}

.legal-section ul {
    margin-left: 2.5rem;
    margin-bottom: 1.2rem;
}

.legal-section li {
    margin: 0.7rem 0;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(44, 62, 80, 0.98);
        transition: 0.3s;
        padding: 5rem 2rem;
        border-left: 3px solid #e74c3c;
        backdrop-filter: blur(15px);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    nav a {
        font-size: 1.2rem;
        display: block;
        text-align: center;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.9rem;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .game-embed {
        height: 500px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
}
