:root {
    --bg-main: #05060a;
    --bg-alt: #0d1018;
    --bg-card: #151925;
    --bg-footer: #020308;
    --accent: #ff7a3c;
    --accent-soft: rgba(255, 122, 60, 0.15);
    --text-main: #f7f7f7;
    --text-muted: #b0b3c0;
    --border-subtle: #272b38;
    --danger: #ff4f5e;
    --success: #4cd964;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #151925 0, #05060a 45%, #020308 100%);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(5, 6, 10, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.logo {
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.logo span {
    background: linear-gradient(120deg, #ffb347, #ff7a3c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-badge {
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.2s ease, transform 0.15s ease;
    padding: 0.2rem 0;
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.3rem;
    width: 0;
    height: 2px;
    background: linear-gradient(120deg, #ffb347, #ff7a3c);
    transition: width 0.2s ease;
}

.nav-menu a:hover {
    color: var(--text-main);
    transform: translateY(-1px);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.3rem;
    cursor: pointer;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
    gap: 0.45rem;
}

.btn-primary {
    background: linear-gradient(120deg, #ffb347, #ff7a3c);
    color: #120b05;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.7);
}

.btn-outline {
    background: transparent;
    border-color: var(--border-subtle);
    color: var(--text-muted);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--text-main);
}


section {
    padding: 3.5rem 0;
}

.section-header {
    margin-bottom: 2rem;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.section-title {
    font-size: 1.7rem;
    margin: 0 0 0.5rem;
}

.section-subtitle {
    margin: 0;
    color: var(--text-muted);
    max-width: 680px;
}


.hero {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin: 0 0 0.8rem;
}

.hero-subtitle {
    margin: 0 0 1.1rem;
    color: var(--text-muted);
    max-width: 540px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.4rem;
}

.hero-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #ffd3b3;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
}

.hero-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.hero-highlights i {
    color: var(--accent);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.9rem;
}

.hero-disclaimer {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.hero-disclaimer strong {
    color: #ffd3b3;
}

.hero-card {
    background: radial-gradient(circle at top, #20263a 0, #151925 40%, #10131a 100%);
    border-radius: 20px;
    padding: 1.6rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.7);
}

.hero-card-title {
    font-size: 0.95rem;
    margin: 0 0 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-card-title i {
    color: var(--accent);
}

.hero-card-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.83rem;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
}

.hero-card-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffe0c5;
}

.hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.3rem;
}

.hero-chip {
    font-size: 0.7rem;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    background: rgba(15, 190, 120, 0.12);
    color: #b7ffe0;
}

.hero-footnote {
    margin-top: 0.9rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}


.card {
    background: var(--bg-card);
    border-radius: 18px;
    border: 1px solid var(--border-subtle);
    padding: 1.4rem 1.6rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.chip i {
    font-size: 0.8rem;
    color: var(--accent);
}


.codere-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 1.6rem;
}

.codere-logo-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.codere-logo-placeholder {
    width: 110px;
    height: 52px;
    border-radius: 12px;
    border: 1px dashed var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(0, 0, 0, 0.3);
}

.rating-block {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.rating-stars {
    color: #ffd369;
    font-size: 0.9rem;
}

.rating-score {
    font-size: 0.9rem;
}

.rating-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.codere-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.codere-subtitle {
    font-weight: 600;
    font-size: 0.9rem;
    margin: 1rem 0 0.4rem;
}

.promo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.87rem;
    color: var(--text-muted);
}

.promo-list li {
    margin-bottom: 0.4rem;
}

.promo-list li i {
    color: var(--accent);
    margin-right: 0.35rem;
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.87rem;
    color: var(--text-muted);
}

.advantages-list li {
    margin-bottom: 0.35rem;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
}

.advantages-list i {
    color: var(--success);
    margin-top: 0.15rem;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.codere-cta-note {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
}

.codere-info-note {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}


.table-wrapper {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid var(--border-subtle);
    background: rgba(9, 10, 18, 0.9);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

thead {
    background: rgba(14, 18, 30, 0.98);
}

th,
td {
    padding: 0.75rem 0.9rem;
    text-align: left;
    font-size: 0.85rem;
}

th {
    font-weight: 600;
    color: #d6dae7;
    border-bottom: 1px solid var(--border-subtle);
    white-space: nowrap;
}

tbody tr:nth-child(even) {
    background: rgba(18, 20, 30, 0.7);
}

tbody tr:nth-child(odd) {
    background: rgba(10, 11, 18, 0.9);
}

td {
    color: var(--text-muted);
    vertical-align: top;
}

.table-casino-name {
    font-weight: 600;
    color: var(--text-main);
}

.badge-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.78rem;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 211, 105, 0.13);
    color: #ffe5a1;
}

.badge-rating i {
    color: #ffd369;
}

.table-check {
    color: var(--success);
    margin-right: 0.2rem;
}

.info-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.info-pill i {
    color: var(--accent);
}

.comparison-footnote {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 780px;
}


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

.criteria-item {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.1rem 1.1rem 1.1rem;
    border: 1px solid var(--border-subtle);
}

.criteria-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    color: var(--accent);
}

.criteria-title {
    font-size: 0.95rem;
    margin: 0 0 0.25rem;
}

.criteria-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}


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

.guide-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.1rem 1.15rem;
    border: 1px solid var(--border-subtle);
}

.guide-icon {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.guide-title {
    font-size: 0.95rem;
    margin: 0 0 0.35rem;
}

.guide-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}


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

.faq-item {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.1rem 1.15rem;
    border: 1px solid var(--border-subtle);
}

.faq-question {
    font-size: 0.96rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
    display: flex;
    gap: 0.5rem;
}

.faq-question i {
    color: var(--accent);
    margin-top: 0.15rem;
}

.faq-answer {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin: 0;
}


.responsible-section {
    background: linear-gradient(135deg, rgba(255, 122, 60, 0.15), rgba(9, 15, 25, 0.96));
    border-radius: 22px;
    padding: 1.8rem 1.6rem;
    border: 1px solid rgba(255, 122, 60, 0.35);
}

.responsible-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.2rem;
}

.responsible-title {
    margin: 0 0 0.4rem;
}

.responsible-text {
    font-size: 0.88rem;
    color: #ffe0c5;
    margin-bottom: 0.7rem;
}

.responsible-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.86rem;
    color: #ffe0c5;
}

.responsible-list li {
    margin-bottom: 0.35rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.responsible-list i {
    color: #ffe9c8;
    margin-top: 0.15rem;
}

.responsible-notes {
    font-size: 0.8rem;
    color: #ffe0c5;
    margin-top: 0.6rem;
}

.responsible-resources {
    background: rgba(5, 6, 10, 0.6);
    border-radius: 14px;
    padding: 1rem;
    font-size: 0.84rem;
    color: #ffd3b3;
    border: 1px dashed rgba(255, 211, 105, 0.4);
}

.responsible-resources-title {
    font-weight: 600;
    margin: 0 0 0.3rem;
}

.responsible-resources p {
    margin: 0;
}


.contact-card {
    background: var(--bg-card);
    border-radius: 18px;
    padding: 1.4rem 1.6rem;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    max-width: 540px;
}

.contact-email {
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-email a {
    color: var(--accent);
}

.contact-email i {
    margin-right: 0.4rem;
}


.site-footer {
    background: var(--bg-footer);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2.4rem;
    margin-top: 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.1fr;
    gap: 2rem;
    padding-bottom: 1.8rem;
}

.footer-logo {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-logo span {
    background: linear-gradient(120deg, #ffb347, #ff7a3c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 380px;
}

.footer-links-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.8rem;
}

.footer-links li {
    margin-bottom: 0.25rem;
}

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

.footer-links a:hover {
    color: var(--text-main);
}

.footer-contact {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-contact a {
    color: var(--accent);
}

.footer-social {
    margin-top: 0.6rem;
    display: flex;
    gap: 0.5rem;
}

.footer-social i {
    font-size: 0.95rem;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.footer-social i:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.1rem 0 1.6rem;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.footer-bottom p {
    margin: 0.15rem 0;
}


@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1.15fr);
    }

    .hero-card {
        margin-top: 2rem;
        max-width: 420px;
    }

    .codere-grid {
        grid-template-columns: minmax(0, 1fr);
    }

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

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

    .faq-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .responsible-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(4, 6, 14, 0.97);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 0.7rem 5%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero {
        padding-top: 2.4rem;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 640px) {

    .criteria-grid,
    .guides-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-card {
        padding: 1.3rem 1.2rem;
    }

    .contact-card {
        padding: 1.1rem 1.2rem;
    }
}

.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;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-info-block {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.9rem;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-bottom: 0.4rem;
}

.contact-info-list i {
    color: var(--accent);
    margin-top: 0.12rem;
    font-size: 0.8rem;
}

.contact-info-email {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-info-email a {
    color: var(--accent);
}

.contact-info-email i {
    margin-right: 0.35rem;
}


.contact-form {
    font-size: 0.86rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.form-group {
    flex: 1 1 180px;
    margin-bottom: 0.85rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    background: rgba(5, 6, 10, 0.9);
    color: var(--text-main);
    font-size: 0.86rem;
    padding: 0.6rem 0.7rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    font-family: inherit;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #6c7284;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #6c7284 50%),
        linear-gradient(135deg, #6c7284 50%, transparent 50%);
    background-position: calc(100% - 14px) 52%, calc(100% - 9px) 52%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(255, 122, 60, 0.4);
    background: #05060a;
}


.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.6rem;
    flex-wrap: wrap;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    max-width: 430px;
}

.checkbox input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--accent);
}

.form-footnote {
    margin-top: 0.7rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}


@media (max-width: 960px) {
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .form-footer {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .form-row {
        flex-direction: column;
    }
}

.policy-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
    gap: 1.4rem;
    align-items: flex-start;
}

.policy-aside {
    font-size: 0.86rem;
    color: var(--text-muted);
    position: sticky;
    top: 5.2rem;
}

.policy-aside-title {
    font-size: 1rem;
    margin: 0 0 0.4rem;
}

.policy-aside-text {
    margin: 0 0 0.7rem;
}

.policy-aside-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8rem;
}

.policy-aside-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-bottom: 0.4rem;
}

.policy-aside-list i {
    color: var(--accent);
    margin-top: 0.14rem;
    font-size: 0.8rem;
}

.policy-aside-meta {
    margin-top: 0.4rem;
}


.policy-content {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.policy-block+.policy-block {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.policy-block h3 {
    font-size: 1rem;
    margin: 0 0 0.4rem;
    color: var(--text-main);
}

.policy-block p {
    margin: 0 0 0.4rem;
}

.policy-block ul {
    margin: 0.2rem 0 0.5rem 1.1rem;
    padding: 0;
}

.policy-block ul li {
    margin-bottom: 0.25rem;
}

.policy-block strong {
    color: #f6f0ff;
}

.policy-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.policy-contact-mail {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.3rem 0 0.4rem;
    font-size: 0.88rem;
}

.policy-contact-mail a {
    color: var(--accent);
}

.policy-contact-mail i {
    color: var(--accent);
}


@media (max-width: 960px) {
    .policy-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .policy-aside {
        position: static;
    }
}

.terms-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
    gap: 1.4rem;
    align-items: flex-start;
}

.terms-aside {
    font-size: 0.86rem;
    color: var(--text-muted);
    position: sticky;
    top: 5.2rem;
}

.terms-aside-title {
    font-size: 1rem;
    margin: 0 0 0.4rem;
}

.terms-aside-text {
    margin: 0 0 0.7rem;
}

.terms-aside-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8rem;
}

.terms-aside-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-bottom: 0.4rem;
}

.terms-aside-list i {
    color: var(--accent);
    margin-top: 0.14rem;
    font-size: 0.8rem;
}

.terms-aside-meta {
    margin-top: 0.4rem;
}


.terms-content {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.terms-block+.terms-block {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.terms-block h3 {
    font-size: 1rem;
    margin: 0 0 0.4rem;
    color: var(--text-main);
}

.terms-block p {
    margin: 0 0 0.4rem;
}

.terms-block ul {
    margin: 0.2rem 0 0.5rem 1.1rem;
    padding: 0;
}

.terms-block ul li {
    margin-bottom: 0.25rem;
}

.terms-block strong {
    color: #f6f0ff;
}

.terms-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.terms-contact-mail {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.3rem 0 0.4rem;
    font-size: 0.88rem;
}

.terms-contact-mail a {
    color: var(--accent);
}

.terms-contact-mail i {
    color: var(--accent);
}


@media (max-width: 960px) {
    .terms-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .terms-aside {
        position: static;
    }
}

.cookies-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
    gap: 1.4rem;
    align-items: flex-start;
}

.cookies-aside {
    font-size: 0.86rem;
    color: var(--text-muted);
    position: sticky;
    top: 5.2rem;
}

.cookies-aside-title {
    font-size: 1rem;
    margin: 0 0 0.4rem;
}

.cookies-aside-text {
    margin: 0 0 0.7rem;
}

.cookies-aside-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8rem;
}

.cookies-aside-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-bottom: 0.4rem;
}

.cookies-aside-list i {
    color: var(--accent);
    margin-top: 0.14rem;
    font-size: 0.8rem;
}

.cookies-aside-meta {
    margin-top: 0.4rem;
}


.cookies-content {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.cookies-block+.cookies-block {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.cookies-block h3 {
    font-size: 1rem;
    margin: 0 0 0.4rem;
    color: var(--text-main);
}

.cookies-block p {
    margin: 0 0 0.4rem;
}

.cookies-block ul {
    margin: 0.2rem 0 0.5rem 1.1rem;
    padding: 0;
}

.cookies-block ul li {
    margin-bottom: 0.25rem;
}

.cookies-block strong {
    color: #f6f0ff;
}

.cookies-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.cookies-contact-mail {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.3rem 0 0.4rem;
    font-size: 0.88rem;
}

.cookies-contact-mail a {
    color: var(--accent);
}

.cookies-contact-mail i {
    color: var(--accent);
}


@media (max-width: 960px) {
    .cookies-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .cookies-aside {
        position: static;
    }
}

.jr-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
    gap: 1.4rem;
    align-items: flex-start;
}

.jr-aside {
    font-size: 0.86rem;
    color: var(--text-muted);
    position: sticky;
    top: 5.2rem;
}

.jr-aside-title {
    font-size: 1rem;
    margin: 0 0 0.4rem;
}

.jr-aside-text {
    margin: 0 0 0.7rem;
}

.jr-aside-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8rem;
}

.jr-aside-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-bottom: 0.4rem;
}

.jr-aside-list i {
    color: var(--accent);
    margin-top: 0.14rem;
    font-size: 0.8rem;
}

.jr-aside-meta {
    margin-top: 0.4rem;
}


.jr-content {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.jr-block+.jr-block {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.jr-block h3 {
    font-size: 1rem;
    margin: 0 0 0.4rem;
    color: var(--text-main);
}

.jr-block p {
    margin: 0 0 0.4rem;
}

.jr-block ul {
    margin: 0.2rem 0 0.5rem 1.1rem;
    padding: 0;
}

.jr-block ul li {
    margin-bottom: 0.25rem;
}

.jr-block strong {
    color: #f6f0ff;
}

.jr-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}


@media (max-width: 960px) {
    .jr-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .jr-aside {
        position: static;
    }
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    background: rgba(5, 6, 10, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
    display: none;
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.85rem 5%;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.cookie-banner-text {
    flex: 1;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cookie-banner-text strong {
    color: var(--text-main);
    display: inline-block;
    margin-bottom: 0.1rem;
}

.cookie-banner-text p {
    margin: 0;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}


.cookie-panel {
    position: fixed;
    inset: 0;
    z-index: 950;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(2, 3, 8, 0.8);
    backdrop-filter: blur(8px);
    padding: 1rem;
}

.cookie-panel-card {
    max-width: 620px;
    width: 100%;
    background: #05060a;
    border-radius: 18px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
    padding: 1.1rem 1.3rem 1.15rem;
}

.cookie-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.cookie-panel-header h3 {
    margin: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.cookie-panel-header i {
    color: var(--accent);
}

.cookie-panel-close {
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
}

.cookie-panel-intro {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin: 0 0 0.7rem;
}

.cookie-option {
    position: relative;
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    padding: 0.7rem 0.75rem 0.7rem 0.85rem;
    margin-bottom: 0.6rem;
    background: rgba(12, 15, 24, 0.98);
}

.cookie-option-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.cookie-option-main h4 {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-tag {
    font-size: 0.7rem;
    border-radius: 999px;
    padding: 0.15rem 0.55rem;
    background: rgba(255, 122, 60, 0.16);
    color: #ffd3b3;
}

.cookie-tag-soft {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.cookie-option-text {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 90%;
}

.cookie-switch {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.cookie-switch.disabled {
    cursor: default;
    opacity: 0.7;
}

.cookie-switch input {
    display: none;
}

.cookie-slider {
    width: 38px;
    height: 20px;
    border-radius: 999px;
    background: rgba(120, 126, 150, 0.8);
    position: relative;
    transition: background 0.15s ease;
}

.cookie-slider::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #f9fafb;
    transition: transform 0.15s ease;
}

.cookie-switch input:checked+.cookie-slider {
    background: var(--accent);
}

.cookie-switch input:checked+.cookie-slider::before {
    transform: translateX(15px);
}

.cookie-panel-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
    margin-top: 0.6rem;
}

.cookie-panel-footnote {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}


.age-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.age-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 122, 60, 0.35), rgba(1, 2, 6, 0.96));
    backdrop-filter: blur(10px);
}

.age-overlay-card {
    position: relative;
    max-width: 520px;
    width: 90%;
    background: #05060a;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.9);
    padding: 1.5rem 1.4rem 1.3rem;
    z-index: 1;
}

.age-overlay-card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.age-overlay-text {
    margin: 0 0 0.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.age-overlay-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0.7rem 0 0.5rem;
}

.age-exit-btn {
    border-color: var(--danger);
    color: var(--danger);
}

.age-exit-btn:hover {
    border-color: var(--danger);
    background: rgba(255, 79, 94, 0.12);
    color: #ffeef0;
}

.age-overlay-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0.3rem 0 0;
}


@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .cookie-panel-card {
        padding: 1rem 0.95rem 1rem;
    }

    .cookie-option-text {
        max-width: 100%;
        padding-right: 3.1rem;
    }

    .age-overlay-card {
        padding: 1.3rem 1.1rem 1.1rem;
    }
}