* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #1a1f2e;
    --bg-card: rgba(26, 31, 46, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --accent-orange: #ff6b35;
    --accent-gold: #ffd700;
    --accent-brown: #8b4513;
    --accent-green: #2d5016;
    --border-blue: #4a90e2;
    --border-gold: #f7931e;
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #0a0e1a 0%, #1a1f2e 100%);
    z-index: -1;
    pointer-events: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    z-index: 1000;
    padding: 15px 20px;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    background: #8b0000;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    margin-right: 15px;
}

.disclaimer {
    font-size: 12px;
    color: var(--text-secondary);
    flex: 1;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: var(--accent-orange);
}

.nav-menu {
    position: fixed;
    top: 60px;
    right: -300px;
    width: 300px;
    height: calc(100vh - 60px);
    background: var(--bg-secondary);
    border-left: 1px solid rgba(255, 107, 53, 0.2);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 20px;
}

.nav-menu.active {
    right: 0;
}

.nav-menu ul {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 15px;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
    display: block;
    padding: 10px;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: var(--accent-orange);
    background: rgba(255, 107, 53, 0.1);
}

/* Main Content */
.main-content {
    margin-top: 80px;
    padding: 40px 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="sky" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%23ff6b35;stop-opacity:0.3" /><stop offset="50%" style="stop-color:%23f7931e;stop-opacity:0.2" /><stop offset="100%" style="stop-color:%230a0e1a;stop-opacity:0.8" /></linearGradient></defs><rect width="1200" height="600" fill="url(%23sky)"/><path d="M 100 500 Q 100 400 200 400 Q 300 400 400 500 L 400 600 L 100 600 Z" fill="%232d5016" opacity="0.3"/><path d="M 500 480 Q 500 380 600 380 Q 700 380 800 480 L 800 600 L 500 600 Z" fill="%232d5016" opacity="0.3"/><path d="M 900 520 Q 900 420 1000 420 Q 1100 420 1200 520 L 1200 600 L 900 600 Z" fill="%232d5016" opacity="0.3"/><circle cx="1000" cy="150" r="80" fill="%23ffd700" opacity="0.2"/></svg>') center/cover;
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    background: rgba(26, 31, 46, 0.85);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
}

.logo {
    width: 300px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

.hero-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--accent-orange);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Game Preview */
.game-preview {
    margin-top: 40px;
    text-align: center;
}

.game-image {
    width: 100%;
    max-width: 800px;
    height: 450px;
    margin: 0 auto 30px;
    border: 3px solid var(--accent-orange);
    border-radius: 15px;
    object-fit: cover;
    display: block;
    box-shadow: var(--shadow-glow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-image:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
}

.play-button {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.8);
    color: white;
}

.play-button:active {
    transform: translateY(0);
}

/* Info Section */
.info-section {
    margin: 60px 0;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    box-shadow: var(--shadow-card);
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--accent-orange);
    text-align: center;
}

.section-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--accent-gold);
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: rgba(26, 31, 46, 0.6);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-glow);
}

.info-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Banner */
.no-purchase-banner {
    text-align: center;
    margin: 60px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 215, 0, 0.2) 100%);
    border: 3px solid var(--accent-orange);
    border-radius: 15px;
    transform: rotate(-2deg);
    box-shadow: var(--shadow-card);
}

.no-purchase-banner h2 {
    font-size: 42px;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    margin: 60px 0;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.1);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--text-primary);
}

.faq-toggle {
    font-size: 24px;
    color: var(--accent-orange);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding: 40px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-nav a {
    color: var(--text-primary);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--accent-orange);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 20px;
}

.footer-responsible-gaming {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-responsible-gaming h3 {
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.footer-responsible-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-responsible-logos a {
    display: inline-block;
    transition: opacity 0.3s, transform 0.3s;
}

.footer-responsible-logos a:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.footer-responsible-logos img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

/* Age Verification Popup */
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.age-popup.hidden {
    display: none;
}

.age-popup-content {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    border: 3px solid var(--accent-orange);
    max-width: 600px;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.5);
    animation: popupAppear 0.5s ease;
}

@keyframes popupAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.age-popup h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.age-popup p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.age-btn-yes {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
    color: white;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.age-btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
}

.age-btn-no {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-secondary);
}

.age-btn-no:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    color: var(--text-secondary);
}

.cookie-text a {
    color: var(--accent-orange);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.cookie-btn-details {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-secondary);
}

.cookie-btn-details:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 30px 20px;
    }
    
    .logo {
        width: 200px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .game-image {
        height: 300px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .age-popup-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .footer-responsible-logos {
        gap: 20px;
    }
    
    .footer-responsible-logos img {
        height: 40px;
        max-width: 120px;
    }
    
    .footer-responsible-gaming h3 {
        font-size: 14px;
    }
}

