@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    --c-header: #343a6c;
    --c-footer: #343a6c;
    --c-bg: #0e112b;
    --c-bg2: #131729;
    --c-bg3: #1a1f3a;
    --c-primary: #1abd8c;
    --c-secondary: #848cc9;
    --c-text: #e8eaf6;
    --c-text-muted: #9fa3c0;
    --c-border: rgba(132, 140, 201, 0.22);
    --c-card: #181d38;
    --c-card2: #1f2545;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 20px rgba(26, 189, 140, 0.18);
    --transition: 0.25s ease;
    --font: 'Montserrat', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--c-bg);
}

body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

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

a {
    color: var(--c-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--c-primary);
}

h1, h2, h3, h4, h5 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 0.6em;
}

h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    margin-bottom: 0.5em;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    margin-bottom: 0.4em;
}

h4 {
    font-size: 1.05rem;
    margin-bottom: 0.35em;
}

p {
    margin-bottom: 1em;
}

ul, ol {
    padding-left: 1.4em;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.35em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: var(--c-primary);
    color: #fff;
    box-shadow: 0 4px 18px rgba(26, 189, 140, 0.35);
}

.btn--primary:hover {
    background: #19d09e;
    box-shadow: 0 6px 24px rgba(26, 189, 140, 0.5);
    color: #fff;
}

.btn--secondary {
    background: var(--c-secondary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(132, 140, 201, 0.3);
}

.btn--secondary:hover {
    background: #9ba3d8;
    color: #fff;
}

.btn--outline {
    background: transparent;
    color: var(--c-secondary);
    border: 1.5px solid var(--c-secondary);
}

.btn--outline:hover {
    background: var(--c-secondary);
    color: #fff;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius);
}

.btn--sm {
    padding: 7px 16px;
    font-size: 0.82rem;
}

.section-title {
    text-align: center;
    margin-bottom: 0.25em;
}

.section-sub {
    text-align: center;
    color: var(--c-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(26, 189, 140, 0.15);
    color: var(--c-primary);
    border: 1px solid rgba(26, 189, 140, 0.3);
}

/* ======= HEADER ======= */
.site-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.header-logo img {
    height: 44px;
    width: auto;
}

.header-logo:hover {
    opacity: 0.85;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(232, 234, 246, 0.85);
    transition: background var(--transition), color var(--transition);
}

.header-nav a:hover, .header-nav a.active {
    background: rgba(132, 140, 201, 0.18);
    color: #fff;
}

.header-nav a svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    opacity: 0.75;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: rgba(232, 234, 246, 0.7);
}

.status-dot {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--c-primary);
    font-weight: 500;
}

.status-dot::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-primary);
    box-shadow: 0 0 8px var(--c-primary);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.players-count {
    color: var(--c-secondary);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.burger-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
}

.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 12px 0 16px;
    border-top: 1px solid var(--c-border);
    gap: 4px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: rgba(232, 234, 246, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background var(--transition);
}

.mobile-menu a:hover {
    background: rgba(132, 140, 201, 0.15);
    color: #fff;
}

.mobile-menu a svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

/* ======= HERO ======= */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/pinocasino-banner.png');
    background-size: cover;
    background-position: center top;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 17, 43, 0.92) 0%, rgba(14, 17, 43, 0.7) 50%, rgba(14, 17, 43, 0.3) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 80px 0;
}

.hero-content {
    max-width: 560px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero h1 {
    color: #fff;
    margin-bottom: 0.5em;
}

.hero-desc {
    color: rgba(232, 234, 246, 0.8);
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-bonus-card {
    background: rgba(26, 29, 56, 0.9);
    border: 1.5px solid rgba(26, 189, 140, 0.35);
    border-radius: var(--radius);
    padding: 28px 32px;
    text-align: center;
    backdrop-filter: blur(8px);
    min-width: 220px;
    box-shadow: var(--shadow-glow), var(--shadow);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.bonus-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.bonus-label {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    margin-bottom: 12px;
}

.bonus-spins {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

/* ======= SECTIONS ======= */
.section-pad {
    padding: 72px 0;
}

.section-pad-sm {
    padding: 48px 0;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
    margin: 0 auto;
}

/* ======= ADVANTAGES ======= */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.advantage-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.advantage-card:hover {
    transform: translateY(-4px);
    border-color: rgba(26, 189, 140, 0.4);
    box-shadow: var(--shadow-glow);
}

.advantage-icon {
    width: 48px;
    height: 48px;
    background: rgba(26, 189, 140, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-icon svg {
    width: 24px;
    height: 24px;
    color: var(--c-primary);
}

.advantage-card h3 {
    font-size: 0.97rem;
    margin-bottom: 0;
}

.advantage-card p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-bottom: 0;
    line-height: 1.55;
}

/* ======= PAYMENT TABLE ======= */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
}

.payment-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    background: var(--c-card);
    font-size: 0.88rem;
}

.payment-table th {
    background: var(--c-header);
    color: #fff;
    font-weight: 600;
    padding: 13px 16px;
    text-align: left;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    border-bottom: 2px solid rgba(26, 189, 140, 0.3);
}

.payment-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text);
    vertical-align: middle;
}

.payment-table tr:last-child td {
    border-bottom: none;
}

.payment-table tr:hover td {
    background: rgba(132, 140, 201, 0.06);
}

.payment-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #fff;
}

.pm-icon {
    width: 36px;
    height: 22px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
}

.text-ok {
    color: var(--c-primary);
}

.text-muted {
    color: var(--c-text-muted);
}

/* ======= BONUSES ======= */
.bonuses-wrapper {
    position: relative;
}

.bonuses-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bonus-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow), var(--shadow);
}

.bonus-card-top {
    padding: 22px 20px 18px;
    background: linear-gradient(135deg, var(--c-header) 0%, #2a3070 100%);
    text-align: center;
}

.bonus-card-top .bc-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-card-top .bc-icon svg {
    width: 44px;
    height: 44px;
    color: var(--c-primary);
}

.bonus-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.bonus-card-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--c-primary);
}

.bonus-card-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.bonus-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bonus-card-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin: 0;
}

.bonus-card-body ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-primary);
    flex-shrink: 0;
    margin-top: 0.45em;
}

.bonus-card-footer {
    padding: 0 20px 20px;
}

.bonus-card.featured {
    border-color: rgba(26, 189, 140, 0.5);
    box-shadow: var(--shadow-glow);
}

.bonus-card.featured::before {
    content: 'POPULAIR';
    position: absolute;
    top: 12px;
    right: -26px;
    background: var(--c-primary);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 36px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

/* Slider for mobile bonuses */
.bonuses-slider-controls {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--c-primary);
    transform: scale(1.3);
}

/* ======= SLOT MACHINE ======= */
.slot-machine-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 40px 24px;
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.slot-machine-wrap h2 {
    margin-bottom: 0.3em;
}

.slot-desc {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
}

.slot-reels {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 1.8rem;
}

.reel {
    width: 80px;
    height: 90px;
    background: var(--c-bg);
    border: 2px solid var(--c-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}

.reel.spinning {
    border-color: var(--c-secondary);
    animation: reel-glow 0.2s ease-in-out infinite alternate;
}

.reel.win {
    border-color: var(--c-primary);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 14px rgba(26, 189, 140, 0.4);
}

@keyframes reel-glow {
    from {
        border-color: var(--c-secondary);
    }
    to {
        border-color: var(--c-primary);
    }
}

.reel-symbol {
    line-height: 1;
    transition: transform 0.15s;
}

.reel.spinning .reel-symbol {
    animation: spin-symbol 0.1s linear infinite;
}

@keyframes spin-symbol {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

.slot-result {
    min-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.slot-result-msg {
    font-size: 1.05rem;
    font-weight: 600;
}

.slot-result-msg.win-msg {
    color: var(--c-primary);
}

.slot-result-msg.lose-msg {
    color: var(--c-text-muted);
}

/* ======= CONTENT / REVIEW ======= */
.review-author-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 2rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--c-header);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--c-primary);
    flex-shrink: 0;
    border: 2px solid rgba(26, 189, 140, 0.4);
}

.author-info h4 {
    margin-bottom: 2px;
    font-size: 0.97rem;
}

.author-info p {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    margin: 0;
}

.author-info a {
    color: var(--c-secondary);
    font-size: 0.8rem;
}

.content-body {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 32px 36px;
    line-height: 1.8;
}

.content-body h1, .content-body h2, .content-body h3,
.content-body h4, .content-body h5, .content-body h6 {
    color: #fff;
    margin-top: 1.6em;
    margin-bottom: 0.5em;
}

.content-body h2 {
    font-size: 1.4rem;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 0.4em;
}

.content-body h3 {
    font-size: 1.15rem;
}

.content-body p {
    color: var(--c-text);
    margin-bottom: 1em;
}

.content-body ul, .content-body ol {
    color: var(--c-text);
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.content-body ul li {
    list-style: disc;
}

.content-body ol li {
    list-style: decimal;
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.2em;
    overflow-x: auto;
    display: block;
}

.content-body table th {
    background: var(--c-header);
    padding: 10px 14px;
    text-align: left;
    font-size: 0.85rem;
    color: #fff;
    border: 1px solid var(--c-border);
}

.content-body table td {
    padding: 9px 14px;
    border: 1px solid var(--c-border);
    font-size: 0.88rem;
    color: var(--c-text);
}

.content-body a {
    color: var(--c-secondary);
}

.content-body a:hover {
    color: var(--c-primary);
}

.content-body strong {
    color: #fff;
    font-weight: 600;
}

.content-body blockquote {
    border-left: 3px solid var(--c-primary);
    padding: 10px 18px;
    color: var(--c-text-muted);
    font-style: italic;
    margin: 1em 0;
    background: rgba(26, 189, 140, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ======= REGISTRATION TABLE ======= */
.reg-steps-table {
    width: 100%;
    max-width: 740px;
    margin: 0 auto;
    border-collapse: collapse;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.reg-steps-table th {
    background: var(--c-header);
    padding: 13px 18px;
    text-align: left;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    border-bottom: 2px solid rgba(26, 189, 140, 0.3);
}

.reg-steps-table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.88rem;
    color: var(--c-text);
    background: var(--c-card);
    vertical-align: top;
}

.reg-steps-table tr:last-child td {
    border-bottom: none;
}

.reg-steps-table tr:hover td {
    background: rgba(132, 140, 201, 0.06);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--c-primary);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
}

td .step-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ======= RESPONSIBLE GAMING ======= */
.responsible-block {
    background: linear-gradient(135deg, #1a1f3a 0%, #1f2040 100%);
    border: 1px solid rgba(132, 140, 201, 0.25);
    border-left: 4px solid var(--c-primary);
    border-radius: var(--radius);
    padding: 32px 36px;
}

.responsible-block h2 {
    color: #fff;
    margin-bottom: 0.5em;
}

.responsible-block p {
    color: var(--c-text-muted);
}

.resp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 1.5rem;
}

.resp-link {
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(14, 17, 43, 0.6);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--c-text);
    transition: border-color var(--transition), background var(--transition);
}

.resp-link:hover {
    border-color: var(--c-primary);
    background: rgba(26, 189, 140, 0.07);
    color: #fff;
}

.resp-link svg {
    width: 18px;
    height: 18px;
    color: var(--c-primary);
    flex-shrink: 0;
}

/* ======= COMMENTS / FORM ======= */
.comments-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comment-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 18px 20px;
    transition: border-color var(--transition);
}

.comment-item:hover {
    border-color: rgba(132, 140, 201, 0.35);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c-header);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--c-secondary);
    flex-shrink: 0;
}

.comment-meta h4 {
    font-size: 0.88rem;
    margin-bottom: 1px;
}

.comment-meta span {
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

.comment-stars {
    color: #f5c842;
    font-size: 0.8rem;
    margin-left: auto;
}

.comment-text {
    font-size: 0.87rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.comment-form {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px 22px;
}

.comment-form h3 {
    margin-bottom: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-group label {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--c-text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--c-bg3);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-family: var(--font);
    font-size: 0.9rem;
    padding: 10px 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--c-secondary);
    box-shadow: 0 0 0 3px rgba(132, 140, 201, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-group select option {
    background: var(--c-bg3);
}

.form-success {
    display: none;
    background: rgba(26, 189, 140, 0.1);
    border: 1px solid rgba(26, 189, 140, 0.35);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--c-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    margin-top: 12px;
}

.form-success.visible {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* ======= FOOTER ======= */
.site-footer {
    background: var(--c-footer);
    margin-top: auto;
}

.footer-top {
    padding: 48px 0 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 32px;
}

.footer-brand-col {
}

.footer-logo img {
    height: 40px;
    margin-bottom: 14px;
}

.footer-brand-desc {
    font-size: 0.83rem;
    color: rgba(232, 234, 246, 0.6);
    line-height: 1.65;
    margin-bottom: 14px;
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: rgba(232, 234, 246, 0.55);
    margin-bottom: 14px;
}

.footer-flag svg {
    width: 22px;
    height: 16px;
    border-radius: 2px;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
}

.social-link:hover {
    background: var(--c-primary);
    transform: translateY(-2px);
}

.social-link svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

.footer-col h4 {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    font-size: 0.84rem;
    color: rgba(232, 234, 246, 0.65);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--c-primary);
}

.footer-contact-email {
    font-size: 0.84rem;
    color: rgba(232, 234, 246, 0.65);
    margin-bottom: 8px;
}

.footer-contact-email a {
    color: var(--c-secondary);
}

.footer-contact-email a:hover {
    color: var(--c-primary);
}

.footer-bottom {
    padding: 28px 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.74rem;
    font-weight: 600;
    color: rgba(232, 234, 246, 0.65);
    gap: 5px;
    transition: background var(--transition);
    text-decoration: none;
}

.footer-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.footer-badge svg {
    width: 14px;
    height: 14px;
    color: var(--c-primary);
}

.badge-18 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--c-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-legal {
    font-size: 0.77rem;
    color: rgba(232, 234, 246, 0.38);
    line-height: 1.65;
}

.footer-legal a {
    color: rgba(132, 140, 201, 0.65);
}

.footer-legal a:hover {
    color: var(--c-secondary);
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(232, 234, 246, 0.4);
}

/* ======= STICKY WIDGET ======= */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, var(--c-header) 0%, #2a305a 100%);
    border-top: 2px solid var(--c-primary);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sticky-widget.visible {
    transform: translateY(0);
}

.widget-text {
    font-size: 0.88rem;
    color: rgba(232, 234, 246, 0.9);
}

.widget-text strong {
    color: var(--c-primary);
    font-weight: 700;
}

.widget-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    line-height: 1;
    padding: 4px;
    transition: color var(--transition);
    flex-shrink: 0;
}

.widget-close:hover {
    color: #fff;
}

.widget-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* ======= ANIMATIONS ======= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease both;
}

.fade-in-up {
    animation: fadeInUp 0.55s ease both;
}

[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ======= WP UNUSED (camouflage) ======= */
.wp-block-group {
    display: block;
}

.wp-caption {
    max-width: 100%;
}

.elementor-widget-container {
    display: contents;
}

.entry-meta {
    display: none;
}

.wp-post-image {
    display: block;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.widget-area {
    display: none;
}

.post-thumbnail {
    display: none;
}

.alignleft {
    float: none;
}

.alignright {
    float: none;
}

/* ======= UTILS ======= */
.d-none {
    display: none !important;
}

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

.text-muted-c {
    color: var(--c-text-muted);
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.gap-sm {
    gap: 8px;
}

.flex-row {
    display: flex;
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

/* ======= INFO PAGE ======= */
.info-content {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 36px 40px;
    line-height: 1.8;
    color: var(--c-text);
}

.info-content h1, .info-content h2, .info-content h3 {
    color: #fff;
    margin-top: 1.4em;
    margin-bottom: 0.4em;
}

.info-content h2 {
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 0.4em;
}

.info-content p, .info-content li {
    color: var(--c-text-muted);
}

.info-content a {
    color: var(--c-secondary);
}

.info-content a:hover {
    color: var(--c-primary);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-bonus-card {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-nav {
        display: none;
    }

    .header-status {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .hero {
        min-height: 420px;
    }

    .hero-inner {
        padding: 48px 0;
        gap: 24px;
    }

    .hero-bonus-card {
        display: none;
    }

    .bonuses-track {
        display: flex;
        overflow: hidden;
        position: relative;
    }

    .bonus-card {
        min-width: 100%;
        flex-shrink: 0;
    }

    .bonuses-slider-controls {
        display: flex;
    }

    .comments-section {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-top {
        padding: 32px 0 24px;
    }

    .content-body {
        padding: 20px;
    }

    .info-content {
        padding: 20px;
    }

    .sticky-widget {
        flex-wrap: wrap;
        padding: 10px 14px;
    }

    .widget-text {
        font-size: 0.8rem;
    }

    .reg-steps-table {
        font-size: 0.82rem;
    }

    .responsible-block {
        padding: 22px 18px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .btn--lg {
        padding: 12px 22px;
        font-size: 0.9rem;
    }

    .section-pad {
        padding: 48px 0;
    }

    .hero-inner {
        padding: 36px 0;
    }

    .footer-logos-row {
        gap: 8px;
    }

    .responsible-block {
        border-left-width: 3px;
    }
}

@media (max-width: 768px) {
    .bonuses-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .bonuses-track {
        display: flex;
        width: 100%;
        max-width: 100%;
        gap: 0;
        overflow: visible;
        touch-action: pan-y;
        will-change: transform;
    }

    .bonuses-track .bonus-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .bonuses-slider-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 18px;
    }

    .bonuses-slider-controls .slider-dot {
        display: block;
        width: 10px;
        height: 10px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, .25);
        cursor: pointer;
    }

    .bonuses-slider-controls .slider-dot.active {
        background: var(--c-primary, #1abd8c);
        transform: scale(1.35);
    }

    .bonus-card-top,
    .bonus-card-body,
    .bonus-card-footer {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .bonus-card-title,
    .bonus-card-amount,
    .bonus-card-body li {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}