@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-orange: #ff6b35;
    --bright-red: #dc2626;
    --warm-orange: #f97316;
    --deep-red: #991b1b;
    --dark-bg: #0f172a;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #020617 100%);
    color: var(--slate-100);
    min-height: 100vh;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 88px;
    filter: brightness(0) invert(1);
    border-radius: 8px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--neon-orange), var(--bright-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--slate-300);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--neon-orange);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.age-badge {
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.age-badge span {
    color: #f87171;
    font-weight: 700;
    font-size: 0.875rem;
}

.mobile-menu-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(30, 41, 59, 0.5);
}

.menu-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--slate-900) 0%, #020617 50%, var(--slate-900) 100%);
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.15), transparent 70%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.license-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.license-badge span {
    color: var(--neon-orange);
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.glow-text {
    background: linear-gradient(45deg, var(--neon-orange), var(--bright-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.white-text {
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate-300);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.feature-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(71, 85, 105, 0.5);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

.feature-item span {
    font-weight: 600;
    color: var(--white);
}

/* game Section */
.games-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.7));
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.section-icon {
    width: 32px;
    height: 32px;
    filter: invert(1);
}

.section-header p {
    color: var(--slate-400);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.game-grid {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.game-card {
    position: relative;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(71, 85, 105, 0.6);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.game-card:hover {
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 25px 50px -12px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.game-badge {
    position: absolute;
    top: -8px;
    left: -8px;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.top-badge {
    background: linear-gradient(45deg, var(--warm-orange), var(--neon-orange));
    color: #451a03;
}

.elite-badge {
    background: linear-gradient(45deg, var(--bright-red), var(--deep-red));
    color: var(--white);
}

.badge-icon {
    width: 12px;
    height: 12px;
}

.game-logo {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.game-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.bonus-offer {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--neon-orange);
    font-size: 1rem;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.5);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--slate-300);
    backdrop-filter: blur(8px);
}

.tag-icon {
    width: 14px;
    height: 14px;
    filter: invert(1);
}

.rating-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 12px;
}

.stars span {
    color: var(--warm-orange);
    font-size: 1.125rem;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--warm-orange), var(--neon-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.game-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: linear-gradient(45deg, var(--neon-orange), var(--bright-red));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.game-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(255, 107, 53, 0.5);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Rating Methodology */
.rating-methodology {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.7));
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.criteria-card {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(71, 85, 105, 0.6);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.criteria-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.criteria-icon {
    width: 48px;
    height: 48px;
    filter: invert(1);
    margin: 0 auto 1rem;
}

.criteria-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.criteria-card p {
    color: var(--slate-300);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.7));
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(71, 85, 105, 0.6);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(30, 41, 59, 0.3);
}

.faq-number {
    width: 32px;
    height: 32px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-orange);
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
}

.expand-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--slate-300);
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, #000000, var(--slate-950));
    border-top: 1px solid rgba(71, 85, 105, 0.5);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    background: linear-gradient(45deg, var(--neon-orange), var(--bright-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.footer-brand p {
    color: var(--slate-400);
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.warning-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 1rem;
    border-radius: 12px;
}

.warning-icon {
    width: 32px;
    height: 32px;
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
}

.warning-title {
    color: #f87171;
    font-weight: 700;
}

.warning-text {
    color: #fca5a5;
    font-size: 0.875rem;
}

.footer-nav h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: var(--slate-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--neon-orange);
}

.footer-contact h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--slate-400);
    font-size: 0.875rem;
}

.contact-icon {
    width: 16px;
    height: 16px;
    filter: invert(1);
}

.footer-bottom {
    border-top: 1px solid rgba(30, 41, 59, 1);
    padding-top: 1.5rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-legal p {
    color: var(--slate-500);
    font-size: 0.875rem;
}

.legal-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--slate-500);
}

.dot {
    width: 4px;
    height: 4px;
    background: var(--neon-orange);
    border-radius: 50%;
}

/* Media Queries */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-section {
        padding: 8rem 0;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }

    .criteria-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }

    .footer-legal {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .criteria-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Regulators Section */
.regulators-section {
    border-top: 1px solid rgba(71, 85, 105, 0.3);
    padding: 2rem 0;
    margin: 2rem 0;
}

.regulators-section h4 {
    color: var(--white);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.regulators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.regulator-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(71, 85, 105, 0.4);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.regulator-link:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.regulator-link img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0.9);
}

.regulator-link span {
    color: var(--slate-300);
    font-size: 0.75rem;
    font-weight: 500;
}

.regulator-link:hover span {
    color: var(--neon-orange);
}

/* Disclaimer Section */
.disclaimer-section {
    border-top: 1px solid rgba(71, 85, 105, 0.3);
    padding: 2rem 0 1rem;
}

.disclaimer-box {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
}

.disclaimer-box h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.disclaimer-box p {
    color: var(--slate-300);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.help-link {
    color: var(--neon-orange);
    text-decoration: none;
    font-weight: 600;
}

.help-link:hover {
    text-decoration: underline;
}

/* Age Verification Popup */
.age-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
}

.age-popup-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.age-popup-content {
    background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
    position: relative;
}

.age-popup-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.popup-header-icon {
    width: 48px;
    height: 48px;
    filter: invert(65%) sepia(47%) saturate(959%) hue-rotate(14deg) brightness(108%) contrast(108%);
}

.age-popup-header h2 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.age-popup-body p {
    color: var(--slate-300);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.age-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.75rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.warning-small-icon {
    width: 16px;
    height: 16px;
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
}

.age-warning span {
    color: #fca5a5;
    font-size: 0.875rem;
    font-weight: 500;
}

.age-popup-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.age-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn-confirm {
    background: linear-gradient(45deg, var(--neon-orange), var(--bright-red));
    color: var(--white);
}

.age-btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(255, 107, 53, 0.4);
}

.age-btn-decline {
    background: rgba(71, 85, 105, 0.6);
    color: var(--slate-200);
    border: 1px solid rgba(71, 85, 105, 0.8);
}

.age-btn-decline:hover {
    background: rgba(71, 85, 105, 0.8);
    transform: translateY(-2px);
}

.btn-small-icon {
    width: 16px;
    height: 16px;
}

/* Media Queries para Footer */
@media (min-width: 768px) {
    .disclaimer-box {
        padding: 2rem;
    }

    .regulators-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .age-popup-actions {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .age-popup-content {
        padding: 2rem;
        margin: 1rem;
    }

    .age-popup-actions {
        flex-direction: column;
    }

    .regulators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}