:root {
    --bg-main: #0b0f19;
    --bg-card: #151b2b;
    --bg-card-hover: #1e2638;
    --text-light: #f8f9fa;
    --text-muted: #a0aec0;
    --gold-primary: #d4af37;
    --gold-hover: #f1c40f;
    --accent-danger: #e53e3e;
    --border-color: #2d3748;
    --header-bg: rgba(11, 15, 25, 0.95);
}


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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-light);
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: var(--gold-primary);
    transition: color 0.3s;
}

a:hover {
    color: var(--gold-hover);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}


h1,
h2,
h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

h1 {
    font-size: 2.2rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.8rem;
    color: var(--gold-primary);
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}


.btn {
    display: inline-block;
    background-color: var(--gold-primary);
    color: var(--bg-main);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    color: var(--bg-main);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline:hover {
    background-color: var(--gold-primary);
    color: var(--bg-main);
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
}

.logo span {
    color: var(--gold-primary);
}

.domain-text {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 400;
}

.nav-links {
    display: none;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--gold-primary);
}

.menu-toggle {
    display: block;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
}


.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    overflow-y: auto;
    max-height: calc(100vh - 70px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.nav-links.active li {
    margin: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-links.active li:last-child {
    border-bottom: none;
}


.hero {
    margin-top: 70px;
    padding: 6rem 1.5rem;
    background: linear-gradient(rgba(11, 15, 25, 0.85), rgba(11, 15, 25, 0.95));
    text-align: center;
}

.hero h1 {
    max-width: 800px;
    margin: 0 auto 1rem;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #d1d5db;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.feature-item i {
    color: var(--gold-primary);
}


.codere-highlight {
    background-color: var(--bg-main);
}

.codere-card {
    background-color: var(--bg-card);
    border: 2px solid var(--gold-primary);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.badge-exclusive {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold-primary);
    color: var(--bg-main);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

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

.placeholder-logo {
    width: 150px;
    height: 60px;
    background-color: #ffffff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
}

.rating {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.rating span {
    color: var(--text-light);
    font-weight: 600;
    margin-left: 0.5rem;
}

.codere-content ul {
    margin-bottom: 1.5rem;
}

.codere-content li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-light);
}

.codere-content li i {
    color: #48bb78;
    margin-top: 0.3rem;
}

.disclaimer-small {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
}


.comparativa-bg {
    background-color: var(--bg-card-hover);
}

.table-responsive {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
    min-width: 800px;
}

th,
td {
    padding: 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

td {
    color: var(--text-light);
    font-size: 0.95rem;
}

.casino-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.check-icon {
    color: #48bb78;
}

.times-icon {
    color: var(--accent-danger);
}


.ranking-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.ranking-item {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold-primary);
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.ranking-number {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}


.guias-bg {
    background-color: var(--bg-card-hover);
}

.grid-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.card i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}


.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(0, 0, 0, 0.1);
}

.faq-answer p {
    padding: 0 1.5rem 1.2rem 1.5rem;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}


.juego-responsable {
    background-color: #1a1010;
    border-top: 2px solid var(--accent-danger);
    border-bottom: 2px solid var(--accent-danger);
}

.juego-responsable h2 {
    color: var(--accent-danger);
}

.jr-content {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 8px;
}

.jr-content ul {
    margin: 1.5rem 0;
}

.jr-content li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.jr-content li i {
    color: var(--accent-danger);
    margin-top: 0.3rem;
}

.help-resources {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(229, 62, 62, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fca5a5;
    font-weight: 600;
}

.resource-link:hover {
    color: #fecaca;
    text-decoration: underline;
}


footer {
    background-color: #05070a;
    padding: 4rem 0 0 0;
}

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

.footer-col h3 {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--gold-primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg-card);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--gold-primary);
    color: #000;
}

.footer-bottom {
    background-color: #000;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.geo-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gold-primary);
}


.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(21, 27, 43, 0.98);
    border-top: 1px solid var(--gold-primary);
    padding: 1.5rem;
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-light);
}


@media (min-width: 768px) {
    .nav-links {
        display: flex;
        align-items: center;
    }

    .menu-toggle {
        display: none;
    }

    .codere-card {
        flex-direction: row;
        align-items: center;
    }

    .codere-header {
        flex: 0 0 250px;
        border-right: 1px solid var(--border-color);
        padding-right: 2rem;
    }

    .codere-content {
        flex: 1;
        padding-left: 1rem;
    }

    .codere-action {
        flex: 0 0 200px;
        text-align: center;
    }

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

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

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

    .cookie-banner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cookie-text {
        flex: 1;
        margin-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .grid-cards {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 10%;
    }
}

.logo-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    max-width: 1120px;
    margin: 25px auto;
    justify-content: center;
}

.logo-footer a {
    height: 48px;

}

.logo-footer a img {
    height: 100%;
    object-fit: contain;
}

.contacto {
    padding: 4rem 1.5rem;
    background: #0c0f19;
    color: #f5f5f5;
    margin-top: 80px;
}

.contacto-container {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: flex-start;
}

.contacto h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contacto p {
    line-height: 1.6;
}

.contacto-info p+ul {
    margin-top: 1.5rem;
}

.contacto-datos {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.contacto-datos li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.contacto-datos i {
    font-size: 1rem;
}

.contacto-aviso {
    font-size: 0.9rem;
    opacity: 0.85;
    border-left: 3px solid rgba(255, 215, 0, 0.6);
    padding-left: 1rem;
}


.contacto-form {
    background: #111525;
    border-radius: 12px;
    padding: 2rem 1.75rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1rem;
}

.campo {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.campo-full {
    grid-column: 1 / -1;
}

.campo label {
    font-weight: 600;
}

.campo input,
.campo select,
.campo textarea {
    background: #080b14;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.7rem 0.9rem;
    font: inherit;
    color: inherit;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.campo input::placeholder,
.campo textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.campo textarea {
    resize: vertical;
    min-height: 150px;
}

.campo input:focus,
.campo select:focus,
.campo textarea:focus {
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.4);
    background: #0b1020;
}

.contacto-legal {
    font-size: 0.8rem;
    margin: 1rem 0 1.5rem;
    opacity: 0.8;
}


.btn-contacto {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    border-radius: 999px;
    padding: 0.8rem 1.6rem;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #1a1a1a;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        filter 0.15s ease;
}

.btn-contacto i {
    font-size: 0.95rem;
}

.btn-contacto:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
    filter: brightness(1.03);
}

.btn-contacto:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}


@media (max-width: 900px) {
    .contacto-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .contacto {
        padding: 3rem 1.25rem;
    }

    .contacto-form {
        padding: 1.6rem 1.25rem;
    }

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

.privacidad-bg {
    background-color: var(--bg-card-hover);
    border-top: 1px solid var(--border-color);
}

.privacidad-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.privacidad-wrapper .fecha-actualizacion {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    display: block;
    font-style: italic;
}

.privacidad-wrapper h3 {
    color: var(--gold-primary);
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacidad-wrapper h3 i {
    font-size: 1.1rem;
}

.privacidad-wrapper p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.privacidad-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: none;
}

.privacidad-wrapper li {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    position: relative;
}

.privacidad-wrapper li::before {
    content: "•";
    color: var(--gold-primary);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.privacidad-wrapper a {
    color: var(--gold-primary);
    text-decoration: underline;
}

.privacidad-wrapper a:hover {
    color: var(--gold-hover);
}

@media (max-width: 768px) {
    .privacidad-wrapper {
        padding: 1.5rem;
    }
}

.terminos-bg {
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-color);
}

.terminos-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.terminos-wrapper .fecha-actualizacion {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    display: block;
    font-style: italic;
}

.terminos-wrapper h3 {
    color: var(--gold-primary);
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminos-wrapper h3 i {
    font-size: 1.1rem;
}

.terminos-wrapper p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.terminos-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: none;
}

.terminos-wrapper li {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    position: relative;
}

.terminos-wrapper li::before {
    content: "•";
    color: var(--gold-primary);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.terminos-wrapper a {
    color: var(--gold-primary);
    text-decoration: underline;
}

.terminos-wrapper a:hover {
    color: var(--gold-hover);
}

@media (max-width: 768px) {
    .terminos-wrapper {
        padding: 1.5rem;
    }
}

.cookies-bg {
    background-color: var(--bg-card-hover);
    border-top: 1px solid var(--border-color);
}

.cookies-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookies-wrapper .fecha-actualizacion {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    display: block;
    font-style: italic;
}

.cookies-wrapper h3 {
    color: var(--gold-primary);
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookies-wrapper h3 i {
    font-size: 1.1rem;
}

.cookies-wrapper p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.cookies-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: none;
}

.cookies-wrapper li {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    position: relative;
}

.cookies-wrapper li::before {
    content: "•";
    color: var(--gold-primary);
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
}

.cookies-wrapper li strong {
    color: #fff;
}

.cookies-wrapper a {
    color: var(--gold-primary);
    text-decoration: underline;
}

.cookies-wrapper a:hover {
    color: var(--gold-hover);
}

@media (max-width: 768px) {
    .cookies-wrapper {
        padding: 1.5rem;
    }
}

.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.98);
    /* Майже непрозорий фон */
    backdrop-filter: blur(10px);
    z-index: 100000;
    /* Поверх усього, включаючи хедер і кукі-банер */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Клас для приховування плашки */
.age-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.age-modal {
    background-color: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 2px solid var(--gold-primary);
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.age-overlay.hidden .age-modal {
    transform: translateY(-20px);
}

.age-icon {
    width: 70px;
    height: 70px;
    background-color: var(--gold-primary);
    color: var(--bg-main);
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--bg-card);
    box-shadow: 0 0 0 2px var(--gold-primary);
}

.age-modal h2 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.age-modal p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-age-yes {
    background-color: var(--gold-primary);
    color: var(--bg-main);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-age-yes:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
}

.btn-age-no {
    background-color: transparent;
    color: var(--text-muted);
    font-weight: 600;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-age-no:hover {
    border-color: var(--accent-danger);
    color: var(--accent-danger);
    background-color: rgba(229, 62, 62, 0.1);
}

.age-error-msg {
    color: var(--accent-danger);
    margin-top: 1rem;
    font-size: 0.9rem;
    display: none;
}

@media (min-width: 480px) {
    .age-buttons {
        flex-direction: row;
    }

    .btn-age-yes,
    .btn-age-no {
        flex: 1;
    }
}