* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: #f0f0f0;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    background: linear-gradient(90deg, #1a1a1a 0%, #2a0a0a 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
    border-bottom: 3px solid #FF6B6B;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo span {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    color: #FF6B6B;
    letter-spacing: 3px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #FF6B6B;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
    display: flex;
    gap: 5px;
    list-style: none;
}

.nav-menu a {
    display: block;
    padding: 12px 24px;
    color: #d0d0d0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #FF6B6B;
}

.nav-menu a.active {
    background: #FF6B6B;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 50%, #1a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: relative;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 72px;
    color: #FF6B6B;
    margin-bottom: 20px;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    color: #d0d0d0;
    font-weight: 300;
    margin-bottom: 30px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 107, 0.2);
    border: 2px solid #FF6B6B;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    color: #FF6B6B;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a0a0a, #2a1a1a);
    text-align: center;
    padding: 60px 20px;
    border-bottom: 3px solid #FF6B6B;
}

.page-hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 56px;
    color: #FF6B6B;
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.page-hero p {
    font-size: 20px;
    color: #b0b0b0;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Card Styles */
.card {
    background: linear-gradient(145deg, #1a1a1a, #252525);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
}

.card-header {
    background: linear-gradient(90deg, #FF6B6B, #ff8888);
    padding: 25px 35px;
    border-bottom: 3px solid #ff4444;
}

.card-header h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    color: white;
    letter-spacing: 2px;
}

.card-body {
    padding: 35px;
}

.card-body p {
    font-size: 17px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 20px;
}

/* Welcome Card */
.welcome-card .card-body p:last-child {
    margin-bottom: 0;
}

/* Info Cards Grid */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-card {
    text-align: center;
    padding: 40px 30px !important;
}

.info-card.critical {
    border: 2px solid #ff4444;
    background: linear-gradient(145deg, #2a0a0a, #1a0a0a);
}

.info-card.safe {
    border: 2px solid #44aaff;
    background: linear-gradient(145deg, #0a1a2a, #0a0a1a);
}

.info-card.warning {
    border: 2px solid #ffaa44;
    background: linear-gradient(145deg, #2a1a0a, #1a0a0a);
}

.info-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.info-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    color: #FF6B6B;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.info-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #c0c0c0;
}

/* Game Card */
.game-description {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}

.game-wrapper {
    width: 100%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-note {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    color: #b0b0b0;
    font-style: italic;
}

.game-disclaimer {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 170, 68, 0.1);
    border-left: 4px solid #ffaa44;
    border-radius: 8px;
    color: #ffaa44;
    font-weight: 600;
}

/* Features Section */
.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    text-align: center;
    color: #FF6B6B;
    margin-bottom: 50px;
    letter-spacing: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    text-align: center;
    padding: 35px 25px !important;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.feature-icon {
    font-size: 52px;
    display: block;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    color: #FF6B6B;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
}

/* Instructions */
.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.instruction-item {
    text-align: center;
}

.instruction-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #FF6B6B;
    color: white;
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', cursive;
}

.instruction-item h3 {
    font-size: 22px;
    color: #FF6B6B;
    margin-bottom: 12px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

.instruction-item p {
    font-size: 16px;
    color: #c0c0c0;
    line-height: 1.6;
}

.compatibility-note {
    padding: 20px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #d0d0d0;
    text-align: center;
}

/* Legal Document */
.legal-document {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-card {
    padding: 35px !important;
}

.legal-card h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    color: #FF6B6B;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.legal-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #d0d0d0;
}

.legal-card ul {
    margin: 15px 0 15px 30px;
}

.legal-card li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #d0d0d0;
}

.legal-card.emphasis {
    border: 3px solid #ffaa44;
    background: linear-gradient(145deg, #2a1a0a, #1a0a0a);
}

.emphasis-icon {
    font-size: 64px;
    text-align: center;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    margin-top: 80px;
    padding: 50px 0;
    background: linear-gradient(90deg, #1a0a0a, #0a0a0a);
    border-top: 3px solid #FF6B6B;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    color: #FF6B6B;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #b0b0b0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #FF6B6B;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ff8888;
    transform: translateX(5px);
}

/* Age Modal */
.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;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(145deg, #2a1a1a, #1a0a0a);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #FF6B6B;
    box-shadow: 0 0 60px rgba(255, 107, 107, 0.5);
}

.modal-icon {
    font-size: 72px;
    margin-bottom: 20px;
}

.modal-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 42px;
    color: #FF6B6B;
    margin-bottom: 25px;
    letter-spacing: 3px;
}

.modal-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #d0d0d0;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.modal-buttons button {
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-confirm {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.btn-confirm:hover {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    transform: scale(1.05);
}

.btn-decline {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: white;
}

.btn-decline:hover {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 10px 0;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-badge {
        font-size: 15px;
        padding: 12px 20px;
    }

    .container {
        padding: 40px 20px;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .nav-logo span {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .card-header {
        padding: 20px 25px;
    }

    .card-header h2 {
        font-size: 26px;
    }

    .card-body {
        padding: 25px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .instructions-grid {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 500px;
    }

    .modal-content {
        margin: 20px;
        padding: 35px 25px;
    }

    .modal-content h2 {
        font-size: 32px;
    }

    .modal-buttons {
        flex-direction: column;
        width: 100%;
    }

    .modal-buttons button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 36px;
    }

    .game-iframe {
        height: 400px;
    }
}
