/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0d0d0d;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color .25s; }
img { display: block; max-width: 100%; }

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: blur(1px) brightness(0.35) saturate(0.8);
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.30) 40%,
        rgba(0,0,0,0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 80px 24px;
    max-width: 780px;
}

.hero-logo {
    width: 160px;
    height: auto;
    display: block;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #FFD700;
    text-shadow:
        0 0 20px rgba(255,215,0,0.95),
        0 0 40px rgba(255,200,0,0.75),
        0 0 80px rgba(255,185,0,0.45),
        0 2px 4px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: #cccccc;
    line-height: 1.7;
    max-width: 600px;
}

.btn-hero {
    display: inline-block;
    padding: 16px 48px;
    background: #FFD700;
    color: #000000;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(255,215,0,0.35);
    margin-top: 8px;
}
.btn-hero:hover {
    background: #ffe033;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,215,0,0.5);
}

/* ============================================
   PROMO SECTION
   ============================================ */
.promo-section {
    background-color: #0d0d0d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0 100px;
}
.promo-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.82);
    z-index: 0;
}
.promo-section .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 16px;
}

.section-desc {
    text-align: center;
    color: #999;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.promo-quote {
    background: #161616;
    border-left: 3px solid #FFD700;
    padding: 24px 28px;
    border-radius: 4px;
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 48px;
    position: relative;
}
.quote-mark {
    font-size: 2.5rem;
    color: #FFD700;
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 6px;
    font-family: Georgia, serif;
}

/* Grid: 2 карточки */
.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Карточка */
.promo-card {
    background: #111111;
    border: 2px solid #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    min-height: 480px;
    transition: border-color .25s, box-shadow .25s;
}
.promo-card:hover {
    border-color: #FFD700;
    box-shadow: 0 0 32px rgba(255,215,0,0.25);
}
.promo-card-gold {
    border-color: #ffffff;
    box-shadow: none;
}
.promo-card-gold:hover {
    border-color: #FFD700;
    box-shadow: 0 0 40px rgba(255,215,0,0.30);
}

/* Левая часть — контент */
.promo-card-left {
    flex: 0 0 55%;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
}

/* Правая часть — изображение */
.promo-card-img {
    flex: 0 0 45%;
    overflow: hidden;
    position: relative;
}
.promo-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .5s ease;
}
.promo-card:hover .promo-card-img img { transform: scale(1.05); }

/* Бейдж категории */
.promo-tag {
    display: inline-block;
    background: #2a2a2a;
    color: #aaa;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    align-self: flex-start;
}
.promo-tag-gold {
    background: #FFD700;
    color: #000;
}

/* Заголовок карточки */
.promo-card-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 12px;
}

/* Описание */
.promo-card-desc {
    font-size: 0.88rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Метка бонуса */
.promo-badge-label {
    display: inline-block;
    background: rgba(255,215,0,0.12);
    border: 1px solid rgba(255,215,0,0.3);
    color: #FFD700;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
    align-self: flex-start;
}
.promo-badge-gold {
    background: rgba(255,215,0,0.15);
    border-color: rgba(255,215,0,0.5);
}

/* Детали промо */
.promo-details {
    border-top: 1px solid #222;
    margin-bottom: 24px;
    flex: 1;
}
.promo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid #1e1e1e;
    gap: 8px;
}
.promo-label {
    font-size: 0.8rem;
    color: #777;
}
.promo-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-align: right;
}
.promo-value.highlight { color: #FFD700; }

/* Кнопки карточки */
.btn-promo-outline {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 4px;
    transition: background .25s, color .25s, border-color .25s, box-shadow .25s;
    margin-top: auto;
}
.btn-promo-outline:hover {
    background: #FFD700;
    color: #000;
    border-color: #FFD700;
    box-shadow: 0 0 18px rgba(255,215,0,0.45);
}

.btn-promo-gold {
    display: block;
    text-align: center;
    padding: 14px 20px;
    background: #FFD700;
    color: #000;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 4px;
    border: 2px solid #FFD700;
    transition: background .25s, box-shadow .25s, transform .2s;
    margin-top: auto;
}
.btn-promo-gold:hover {
    background: #ffe033;
    box-shadow: 0 0 20px rgba(255,215,0,0.55);
    transform: translateY(-1px);
}

/* ============================================
   FORM SECTION
   ============================================ */
.form-section {
    background: #0d0d0d;
    padding: 80px 0;
}

.form-box {
    max-width: 520px;
    margin: 0 auto;
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 48px 44px;
    text-align: center;
    position: relative;
}
.form-box::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 60%; height: 2px;
    background: #FFD700;
    border-radius: 0 0 2px 2px;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.form-subtitle {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.form-divider {
    width: 40px;
    height: 2px;
    background: #FFD700;
    margin: 0 auto 32px;
}

.reg-form { text-align: left; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 8px;
}
.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
}
.form-group input::placeholder { color: #555; }
.form-group input:focus { border-color: #FFD700; }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 28px;
}
.form-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #FFD700;
    cursor: pointer;
}
.form-check label {
    font-size: 0.83rem;
    color: #888;
    cursor: pointer;
    line-height: 1.5;
}
.form-check a { color: #FFD700; text-decoration: underline; }

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #FFD700;
    color: #000;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, transform .2s;
}
.btn-submit:hover { background: #ffe033; transform: translateY(-1px); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #080808;
    border-top: 1px solid #1e1e1e;
    padding: 56px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.4fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 110px;
    height: auto;
    display: block;
    margin-bottom: 14px;
}
.footer-copy { font-size: 0.8rem; color: #555; }

.footer-nav-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #FFD700;
    margin-bottom: 16px;
}
.footer-nav ul, .footer-extra ul { list-style: none; }
.footer-nav li, .footer-extra li { margin-bottom: 8px; }
.footer-nav a, .footer-extra a {
    font-size: 0.85rem;
    color: #888;
}
.footer-nav a:hover, .footer-extra a:hover { color: #fff; }

.social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.social-btn {
    width: 38px; height: 38px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: background .2s, color .2s;
}
.social-btn:hover { background: #FFD700; color: #000; }

.footer-disclaimer {
    border-top: 1px solid #1e1e1e;
    padding-top: 24px;
    font-size: 0.78rem;
    color: #555;
    text-align: center;
    line-height: 1.6;
}

/* ============================================
   LEGAL / PQRS ACCORDION
   ============================================ */
.legal-section {
    background: #080808;
    padding: 0 0 20px;
}

.accordion {
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-btn {
    width: 100%;
    background: #111;
    border: none;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s;
}
.accordion-btn:hover { background: #161616; }
.accordion-arrow {
    transition: transform .3s;
    flex-shrink: 0;
}
.accordion-btn.open .accordion-arrow { transform: rotate(180deg); }

.accordion-body {
    padding: 24px;
    background: #0d0d0d;
    border-top: 1px solid #1e1e1e;
}
.legal-text {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.75;
    margin-bottom: 20px;
}
.legal-text a { color: #FFD700; text-decoration: underline; }

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}
.legal-links a {
    font-size: 0.82rem;
    color: #FFD700;
    text-decoration: underline;
}
.legal-pdf { font-size: 0.78rem; color: #555; }

/* ============================================
   LOGOS SECTION
   ============================================ */
.logos-section {
    background: #080808;
    padding: 40px 0 20px;
    border-top: 1px solid #181818;
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.logos-top {
    padding-bottom: 32px;
}

.logos-divider {
    width: 100%;
    height: 1px;
    background: #1e1e1e;
    margin: 0 0 32px;
}

/* Логотипы регуляторов */
.reg-logo-link {
    display: inline-flex;
    align-items: center;
    transition: transform .25s, opacity .25s;
}
.reg-logo-link:hover { transform: translateY(-2px); opacity: 0.85; }

.reg-logo {
    height: 52px;
    width: auto;
    display: block;
}

.reg-logo-supersalud { height: 48px; }
.reg-logo-coljuegos  { height: 44px; }
.reg-logo-juegabien  { height: 44px; }

/* Блок +18 */
.age-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.age-circle {
    width: 58px; height: 58px;
    background: #FFD700;
    color: #000;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.age-block p {
    font-size: 0.72rem;
    color: #888;
    line-height: 1.5;
    max-width: 260px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Логотипы сертификатов */
.logos-mid {
    padding-bottom: 32px;
    gap: 20px;
}
.cert-logo {
    height: 44px;
    width: auto;
    filter: grayscale(100%) brightness(0.75);
    transition: filter .25s, transform .25s;
}
.cert-logo-sm { height: 36px; }
.cert-logo:hover { filter: grayscale(0%) brightness(1); transform: translateY(-2px); }

/* Методы оплаты */
.logos-payment-wrap {
    text-align: center;
    padding-bottom: 24px;
}
.payment-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #555;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.logos-pay { gap: 28px; }
.pay-logo {
    height: 32px;
    width: auto;
    filter: grayscale(100%) brightness(1.6);
    transition: filter .25s, transform .25s;
}
.pay-logo:hover { filter: none; transform: translateY(-2px); }

.copyright {
    text-align: center;
    font-size: 0.78rem;
    color: #333;
    padding: 16px 0 8px;
    border-top: 1px solid #181818;
    margin-top: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .promo-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .promo-card { min-height: 360px; }
    .promo-card-left { padding: 24px 22px; }
}

@media (max-width: 680px) {
    .hero-content { padding: 60px 16px; }
    .hero-title { font-size: 1.7rem; }
    .hero-subtitle br { display: none; }
    .section-desc br { display: none; }

    .promo-card {
        flex-direction: column;
        min-height: auto;
    }
    .promo-card-img {
        height: 200px;
        flex: none;
    }
    .promo-card-left { flex: none; padding: 24px 20px; }

    .form-box { padding: 32px 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }

    .logos-top { gap: 20px; }
    .reg-logo { height: 36px; }
    .cert-logo { height: 34px; }
    .pay-logo { height: 24px; }
    .logos-pay { gap: 16px; }
    .logos-mid { gap: 14px; }
}

@media (max-width: 440px) {
    .hero-title { font-size: 1.45rem; }
    .btn-hero { padding: 14px 36px; font-size: 0.9rem; }
    .promo-card-title { font-size: 1.5rem; }
    .age-circle { width: 48px; height: 48px; font-size: 1.2rem; }
}

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-page {
    min-height: 100vh;
    padding: 60px 0 80px;
    background: #0d0d0d;
}
.policy-section { padding: 0; }
.policy-content {
    max-width: 820px;
    margin: 0 auto;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 48px 52px;
}
.policy-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #FFD700 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.policy-date { font-size: 0.8rem; color: #555; margin-bottom: 32px; }
.policy-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFD700;
    margin: 28px 0 10px;
}
.policy-intro, .policy-text { color: #aaa; font-size: 0.9rem; line-height: 1.8; margin-bottom: 16px; }
.policy-list { padding-left: 20px; color: #aaa; font-size: 0.9rem; line-height: 2; margin-bottom: 16px; }
.policy-contact h3 { color: #fff; margin-bottom: 8px; }
.policy-contact ul { list-style: none; color: #aaa; line-height: 2; }
.policy-notice {
    margin-top: 32px;
    padding: 20px 24px;
    background: rgba(255,215,0,0.06);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 8px;
    color: #aaa;
    font-size: 0.88rem;
    line-height: 1.7;
}
.policy-notice-warning {
    background: rgba(255,80,80,0.06);
    border-color: rgba(255,80,80,0.2);
}
@media (max-width: 680px) {
    .policy-content { padding: 28px 20px; }
    .policy-title { font-size: 1.5rem; }
}

/* ============================================
   THANK PAGE
   ============================================ */
.thank-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0d0d0d;
    padding: 60px 0;
}
.thank-card {
    max-width: 520px;
    margin: 0 auto;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 52px 44px;
    text-align: center;
    position: relative;
}
.thank-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 2px;
    background: #FFD700;
}
.success-icon {
    width: 80px; height: 80px;
    margin: 0 auto 24px;
    background: rgba(255,215,0,0.1);
    border: 2px solid rgba(255,215,0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
}
.thank-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #FFD700 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}
.thank-message { color: #888; font-size: 0.9rem; margin-bottom: 24px; }
.thank-info {
    background: rgba(255,215,0,0.06);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 28px;
    color: #aaa;
    font-size: 0.85rem;
    text-align: left;
}
.thank-info strong { color: #FFD700; display: block; margin-bottom: 4px; }
.thank-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.btn { display: inline-block; padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 0.88rem; transition: all .2s; }
.btn-primary { background: #FFD700; color: #000; }
.btn-primary:hover { background: #ffe033; }
.btn-secondary { border: 1px solid #444; color: #ccc; }
.btn-secondary:hover { border-color: #FFD700; color: #FFD700; }
.thank-contacts { background: #0d0d0d; border-radius: 8px; padding: 18px; border: 1px solid #1e1e1e; }
.thank-contacts p { color: #666; font-size: 0.82rem; margin-bottom: 12px; }
.thank-contact-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all .2s;
    border: 1px solid transparent;
}
.btn-call    { background: #1a3a1a; color: #5cb85c; border-color: #2d5a2d; }
.btn-wa      { background: #1a2e1a; color: #25D366; border-color: #25d36640; }
.btn-email   { background: #1a2233; color: #5bc0de; border-color: #2d4466; }
.btn-call:hover, .btn-wa:hover, .btn-email:hover { filter: brightness(1.2); transform: translateY(-1px); }

/* ============================================
   PQRS FORM PAGE
   ============================================ */
.pqrs-page { min-height: 100vh; padding: 60px 0 80px; background: #0d0d0d; }
.pqrs-content { max-width: 820px; margin: 0 auto; }
.pqrs-channels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0;
}
.pqrs-channel {
    padding: 22px;
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
}
@media (max-width: 600px) {
    .pqrs-channels { grid-template-columns: 1fr; }
    .thank-card { padding: 32px 20px; }
}
