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

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

:root {
    --color-header: #004D37;
    --color-bg: #093631;
    --color-bg-card: #0d4a40;
    --color-bg-card2: #0a3d35;
    --color-btn-primary: #FF5C00;
    --color-btn-secondary: #6DDC52;
    --color-text: #e8f5f0;
    --color-text-muted: #9dc4b8;
    --color-accent: #6DDC52;
    --color-border: #1a6b58;
    --color-gold: #FFD700;
    --color-shadow: rgba(0,0,0,0.4);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-main: 'Ubuntu', sans-serif;
    --transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
    background: var(--color-bg);
}

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

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

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

a:hover {
    color: #fff;
}

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

ul, ol {
    padding-left: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

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

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

.btn--primary:hover {
    background: #e04e00;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,92,0,0.5);
    color: #fff;
}

.btn--secondary {
    background: var(--color-btn-secondary);
    color: #002a1f;
    box-shadow: 0 4px 18px rgba(109,220,82,0.3);
}

.btn--secondary:hover {
    background: #5acc42;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(109,220,82,0.5);
    color: #002a1f;
}

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

.btn--outline:hover {
    background: var(--color-btn-secondary);
    color: #002a1f;
    transform: translateY(-2px);
}

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

.btn--lg {
    padding: 14px 30px;
    font-size: 17px;
}

.box {
    border-radius: var(--radius-md);
}

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

.xk7d2 { display: none; }
.wp-block-separator { border: none; }
.wp-block-quote { opacity: 0; position: absolute; pointer-events: none; }

.site-header {
    background: var(--color-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo {
    flex-shrink: 0;
}

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

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #c9e8de;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.header-nav a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

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

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

.header-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-accent);
    font-weight: 500;
    margin-right: 4px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

.mobile-nav-overlay.active { display: block; }

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: var(--color-header);
    z-index: 999;
    padding: 80px 24px 40px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    transition: left 0.3s ease;
}

.mobile-nav.active {
    display: flex;
    left: 0;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c9e8de;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.mobile-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.mobile-nav a svg { width: 18px; height: 18px; }

.mobile-nav-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-section {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/play-croco-casino-hero.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9,54,49,0.92) 40%, rgba(9,54,49,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 580px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(109,220,82,0.15);
    border: 1px solid var(--color-btn-secondary);
    color: var(--color-btn-secondary);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.hero-title span {
    color: var(--color-btn-primary);
}

.hero-subtitle {
    color: var(--color-text);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-promo {
    background: rgba(255,255,255,0.06);
    border: 2px dashed var(--color-btn-primary);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    margin-bottom: 24px;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.hero-promo-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.hero-promo-code {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
}

.hero-promo-desc {
    font-size: 13px;
    color: var(--color-text);
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.breadcrumbs-section {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--color-text-muted);
}

.breadcrumbs a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.breadcrumbs a:hover { color: var(--color-btn-secondary); }

.breadcrumbs-sep {
    color: var(--color-border);
    font-size: 12px;
}

.breadcrumbs .current {
    color: var(--color-btn-secondary);
    font-weight: 500;
}

.main-content {
    flex: 1;
    padding: 32px 0 60px;
}

.section-block {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.section-block--alt {
    background: var(--color-bg-card2);
    border-radius: var(--radius-md);
}

.section-block--flush {
    padding: 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title svg {
    width: 22px;
    height: 22px;
    color: var(--color-btn-primary);
    flex-shrink: 0;
}

.jackpots-grid {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.jackpot-card {
    flex: 1;
    min-width: 140px;
    background: linear-gradient(135deg, #0d5e4e 0%, #093631 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.jackpot-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.jackpot-amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-gold);
    display: block;
    margin-bottom: 4px;
    transition: color 0.5s;
}

.jackpot-label {
    font-size: 11px;
    color: var(--color-text-muted);
}

.app-info-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -4px;
    padding: 0 4px;
}

table.app-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    font-size: 14px;
    margin: 0 auto;
}

table.app-table th,
table.app-table td {
    padding: 11px 14px;
    text-align: left;
    border: 1px solid var(--color-border);
    vertical-align: middle;
}

table.app-table thead th {
    background: var(--color-header);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table.app-table tbody tr:nth-child(even) {
    background: rgba(255,255,255,0.03);
}

table.app-table tbody tr:hover {
    background: rgba(109,220,82,0.04);
}

table.app-table td:first-child {
    font-weight: 600;
    color: var(--color-text-muted);
    width: 40%;
}

table.app-table td:last-child {
    color: var(--color-text);
}

.app-dl-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    align-items: center;
}

.dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}

.dl-btn:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
    color: #fff;
}

.dl-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

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

.slot-machine {
    background: linear-gradient(135deg, #0a4035 0%, #062d25 100%);
    border: 2px solid var(--color-btn-primary);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(255,92,0,0.2);
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.slot-reel {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 2px solid var(--color-border);
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.1s;
}

.slot-reel.spinning {
    animation: reel-spin 0.15s linear infinite;
}

@keyframes reel-spin {
    0% { transform: translateY(0); }
    25% { transform: translateY(-6px); }
    75% { transform: translateY(6px); }
    100% { transform: translateY(0); }
}

.slot-spin-btn {
    width: 100%;
    max-width: 220px;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    background: var(--color-btn-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: var(--font-main);
    box-shadow: 0 4px 18px rgba(255,92,0,0.35);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slot-spin-btn:hover:not(:disabled) {
    background: #e04e00;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,92,0,0.5);
}

.slot-spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.slot-result {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.slot-win {
    background: rgba(109,220,82,0.15);
    border: 1px solid var(--color-btn-secondary);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    color: var(--color-btn-secondary);
    font-weight: 700;
    font-size: 16px;
    animation: fadeInUp 0.4s ease;
}

.slot-lose {
    color: var(--color-text-muted);
    font-size: 14px;
    animation: fadeInUp 0.3s ease;
}

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

.content-review {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.75;
}

.content-review h1,
.content-review h2,
.content-review h3,
.content-review h4,
.content-review h5,
.content-review h6 {
    color: #fff;
    margin-top: 1.5em;
    margin-bottom: 0.6em;
    line-height: 1.3;
}

.content-review h2 { font-size: 1.4rem; border-bottom: 1px solid var(--color-border); padding-bottom: 0.4em; }
.content-review h3 { font-size: 1.2rem; color: var(--color-btn-secondary); }
.content-review p { margin-bottom: 1em; }
.content-review ul, .content-review ol { padding-left: 22px; margin-bottom: 1em; }
.content-review ul { list-style: disc; }
.content-review ol { list-style: decimal; }
.content-review li { margin-bottom: 0.4em; padding-left: 4px; }
.content-review a { color: var(--color-btn-secondary); text-decoration: underline; }
.content-review strong, .content-review b { color: #fff; font-weight: 700; }
.content-review em, .content-review i { color: var(--color-text-muted); }
.content-review blockquote {
    border-left: 4px solid var(--color-btn-primary);
    padding: 12px 18px;
    background: rgba(255,92,0,0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.2em 0;
    font-style: italic;
    color: var(--color-text-muted);
}
.content-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: 14px;
    overflow-x: auto;
    display: block;
}
.content-review table th,
.content-review table td {
    padding: 9px 12px;
    text-align: left;
    border: 1px solid var(--color-border);
}
.content-review table th {
    background: var(--color-header);
    color: #fff;
    font-weight: 600;
}
.content-review table tr:nth-child(even) { background: rgba(255,255,255,0.03); }
.content-review img { border-radius: var(--radius-sm); margin: 1em 0; }
.content-review code {
    background: rgba(255,255,255,0.06);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
    color: var(--color-btn-secondary);
}
.content-review pre {
    background: rgba(0,0,0,0.3);
    padding: 14px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin: 1em 0;
}
.content-review hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 1.5em 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--color-bg-card2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: var(--color-btn-secondary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    gap: 12px;
    user-select: none;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(255,255,255,0.04);
}

.faq-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--color-btn-secondary);
    transition: transform var(--transition);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 600px;
}

.faq-answer-inner {
    padding: 0 20px 18px;
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.7;
}

.faq-answer-inner a {
    color: var(--color-btn-secondary);
    text-decoration: underline;
}


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

.comment-card {
    background: var(--color-bg-card2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    gap: 14px;
}

.comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-header);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-btn-secondary);
    border: 2px solid var(--color-border);
    overflow: hidden;
}

.comment-avatar img { width: 100%; height: 100%; object-fit: cover; }

.comment-body { flex: 1; }

.comment-meta {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.comment-author {
    font-weight: 700;
    font-size: 15px;
    color: #fff;
}

.comment-date {
    font-size: 12px;
    color: var(--color-text-muted);
}

.comment-stars {
    display: flex;
    gap: 2px;
    margin-left: auto;
}

.comment-stars svg {
    width: 14px;
    height: 14px;
    color: var(--color-gold);
    fill: var(--color-gold);
}

.comment-text {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}

.comment-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

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

.form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.form-field input,
.form-field textarea,
.form-field select {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 14px;
    padding: 10px 14px;
    width: 100%;
    transition: border-color var(--transition), background var(--transition);
    outline: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--color-btn-secondary);
    background: rgba(109,220,82,0.04);
}

.form-field textarea {
    min-height: 100px;
    resize: vertical;
}

.form-field select option {
    background: #093631;
    color: var(--color-text);
}

.form-stars-select {
    display: flex;
    gap: 6px;
}

.form-stars-select input[type="radio"] {
    display: none;
}

.form-stars-select label {
    cursor: pointer;
    font-size: 24px;
    color: var(--color-border);
    transition: color var(--transition);
    padding: 0;
    text-transform: none;
    letter-spacing: 0;
}

.form-stars-select input[type="radio"]:checked ~ label,
.form-stars-select label:hover,
.form-stars-select label:hover ~ label {
    color: var(--color-gold);
}

.form-submit-msg {
    display: none;
    background: rgba(109,220,82,0.12);
    border: 1px solid var(--color-btn-secondary);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--color-btn-secondary);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    animation: fadeInUp 0.3s ease;
}

.author-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid var(--color-btn-secondary);
    object-fit: cover;
    flex-shrink: 0;
}

.author-info { flex: 1; }

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.author-title {
    font-size: 13px;
    color: var(--color-btn-secondary);
    font-weight: 500;
    margin-bottom: 8px;
}

.author-bio {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.65;
    margin-bottom: 12px;
}

.author-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.author-socials a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 50px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--color-border);
    font-size: 13px;
    color: var(--color-text);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.author-socials a:hover {
    background: var(--color-btn-secondary);
    color: #002a1f;
    border-color: var(--color-btn-secondary);
}

.author-socials a svg {
    width: 14px;
    height: 14px;
}

.author-dates {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 10px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.author-dates span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-footer {
    background: var(--color-header);
    padding: 40px 0 24px;
    margin-top: auto;
    border-top: 2px solid var(--color-border);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--color-border);
}


.footer-logo {
    margin-bottom: 12px;
}

.footer-logo img {
    height: 38px;
    width: auto;
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.footer-country img {
    width: 22px;
    height: 15px;
    border-radius: 2px;
}

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

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    transition: background var(--transition), color var(--transition);
}

.footer-socials a:hover {
    background: var(--color-btn-secondary);
    color: #002a1f;
    border-color: var(--color-btn-secondary);
}

.footer-socials a svg { width: 16px; height: 16px; }


.footer-nav-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-links a {
    font-size: 13px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--color-btn-secondary); }


.footer-email {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-muted);
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-email svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--color-btn-secondary); }

.footer-badges-row {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--color-border);
}

.footer-badges-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.footer-badge svg { width: 14px; height: 14px; }

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

.footer-legal {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-legal a {
    color: var(--color-text-muted);
    text-decoration: underline;
}

.footer-copyright {
    font-size: 12px;
    color: var(--color-text-muted);
    opacity: 0.6;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, var(--color-header) 0%, #016045 100%);
    border-top: 2px solid var(--color-btn-primary);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.widget-promo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.widget-promo-text {
    font-size: 13px;
    color: var(--color-text-muted);
}

.widget-promo-bonus {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gold);
}

.widget-code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1.5px dashed var(--color-btn-primary);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 1px;
    flex-shrink: 0;
}

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

.widget-close {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 4px;
    font-size: 20px;
    line-height: 1;
    transition: color var(--transition);
}

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

.wp-content-area { display: none; }
.elementor-widget-wrap { display: none; }
.wp-block-group { display: none; }
.yoast-seo-item { display: none; }

.pb76x { display: none; }
.ag91k { overflow: hidden; max-height: 0; }
.qr3m8 { visibility: hidden; position: absolute; }
.lz40j { opacity: 0; pointer-events: none; }

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .header-nav { display: none; }
    .burger { display: flex; }
    .header-online { display: none; }

    .section-block { padding: 22px 16px; }
    .jackpots-grid { gap: 10px; }
    .jackpot-card { min-width: 120px; }
    .jackpot-amount { font-size: 1.3rem; }

    .author-block { flex-direction: column; align-items: center; text-align: center; }
    .author-socials { justify-content: center; }
    .author-dates { justify-content: center; }
    .footer-top { flex-direction: column; gap: 22px; }
}

@media (max-width: 600px) {
    .hero-section { min-height: 360px; }
    .hero-content { padding: 40px 0; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; text-align: center; }

    .slot-reel { width: 66px; height: 66px; font-size: 32px; }

    .comment-card { flex-direction: column; gap: 10px; }
    .comment-stars { margin-left: 0; }

    .sticky-widget { flex-wrap: wrap; }
    .widget-promo { order: 1; width: 100%; }
    .widget-right { order: 2; width: 100%; justify-content: space-between; }

    .app-dl-btns { flex-direction: column; }
    .dl-btn { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
    .header-logo img { height: 34px; }
    .btn--sm { padding: 6px 12px; font-size: 12px; }
    .jackpot-card { min-width: 100%; }
}
