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

:root {
    --bg-main: #4b0a4e;
    --bg-nav: #332d32;
    --bg-nav-darker: #28242a;
    --btn-green: #81de22;
    --btn-green-hover: #6dc91a;
    --btn-blue: #1795e3;
    --btn-blue-hover: #0e7fc7;
    --text-light: #f5f0f6;
    --text-muted: #d4bedd;
    --text-dark: #1a1a1a;
    --accent-gold: #f5c842;
    --accent-orange: #e8762c;
    --success: #3ecf5a;
    --warning: #f5c842;
    --error: #e84040;
    --border-color: #5e2160;
    --card-bg: #3d0840;
    --card-bg-alt: #2a1d2b;
    --shadow-glow: 0 0 24px rgba(129, 222, 34, 0.18);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.38);
    --radius: 12px;
    --radius-sm: 6px;
    --spacing: 8px;
    --font-main: 'Oswald', sans-serif;
    --transition: 0.22s ease;
    --header-h: 72px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--btn-green);
}

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

ul, ol {
    list-style: none;
}

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

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

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

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

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

.btn-play {
    background: var(--btn-green);
    color: #1a2a0a;
    box-shadow: 0 4px 16px rgba(129, 222, 34, 0.3);
}

.btn-play:hover {
    background: var(--btn-green-hover);
    color: #1a2a0a;
    box-shadow: 0 6px 24px rgba(129, 222, 34, 0.45);
}

.btn-bonus {
    background: var(--btn-blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(23, 149, 227, 0.3);
}

.btn-bonus:hover {
    background: var(--btn-blue-hover);
    color: #fff;
    box-shadow: 0 6px 24px rgba(23, 149, 227, 0.45);
}

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

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

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

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

.site-header {
    background: var(--bg-nav);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    border-bottom: 2px solid var(--bg-nav-darker);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.header-inner {
    display: flex;
    align-items: center;
    height: var(--header-h);
    gap: 16px;
}

.site-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(129, 222, 34, 0.35));
}

.winner-ticker {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(129, 222, 34, 0.1);
    border: 1px solid rgba(129, 222, 34, 0.3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.78rem;
    color: var(--btn-green);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    flex-shrink: 1;
    min-width: 0;
}

.winner-ticker .ticker-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.winner-ticker .ticker-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main-nav {
    margin-left: auto;
}

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

.nav-list li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    text-transform: uppercase;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.08);
}

.nav-list li a svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

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

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s 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-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-nav);
    z-index: 999;
    overflow-y: auto;
    flex-direction: column;
    padding: 24px 16px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 4px;
}

.mobile-nav .nav-list li {
    width: 100%;
}

.mobile-nav .nav-list li a {
    width: 100%;
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}

.mobile-nav .mobile-cta-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav .mobile-cta-row .btn {
    flex: 1;
}

.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: url('/banner.png') center/cover no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(75, 10, 78, 0.88) 0%, rgba(51, 45, 50, 0.82) 50%, rgba(75, 10, 78, 0.6) 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(129, 222, 34, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 16px;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(129, 222, 34, 0.15);
    border: 1px solid rgba(129, 222, 34, 0.4);
    color: var(--btn-green);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 12px;
}

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

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hero-stat strong {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
}

.hero-stat span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.hero-image {
    flex-shrink: 0;
    width: 260px;
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(0 0 32px rgba(129, 222, 34, 0.28)) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6));
    animation: float 4s ease-in-out infinite;
}

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

.breadcrumbs-block {
    padding: 12px 0;
    margin: 0;
}

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

.breadcrumbs-list li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumbs-list li::after {
    content: '›';
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs-list li:last-child::after {
    display: none;
}

.breadcrumbs-list li a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.breadcrumbs-list li a:hover {
    color: var(--btn-green);
}

.breadcrumbs-list li:last-child span {
    color: var(--text-light);
}

.section-block {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 36px;
    margin: 0 0 24px;
    border: 1px solid var(--border-color);
    position: relative;
}

.section-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--btn-green), var(--btn-blue));
    border-radius: var(--radius) var(--radius) 0 0;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    font-weight: 300;
}

.game-demo-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #1a0a1c;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.game-demo-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.game-demo-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.game-badges-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.game-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 400;
}

.game-badge strong {
    color: var(--text-light);
}

.pros-cons-grid {
    display: flex;
    gap: 20px;
}

.pros-col, .cons-col {
    flex: 1;
    border-radius: var(--radius-sm);
    padding: 24px;
    min-width: 0;
}

.pros-col {
    background: rgba(62, 207, 90, 0.07);
    border: 1px solid rgba(62, 207, 90, 0.25);
}

.cons-col {
    background: rgba(232, 64, 64, 0.07);
    border: 1px solid rgba(232, 64, 64, 0.25);
}

.pros-cons-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.pros-cons-title .pc-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.pros-col .pc-icon {
    background: rgba(62, 207, 90, 0.2);
    color: var(--success);
}

.cons-col .pc-icon {
    background: rgba(232, 64, 64, 0.2);
    color: var(--error);
}

.pros-col .pros-cons-title {
    color: var(--success);
}

.cons-col .pros-cons-title {
    color: var(--error);
}

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pros-cons-list li:last-child {
    border-bottom: none;
}

.pros-cons-list .li-dot {
    flex-shrink: 0;
    margin-top: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.pros-col .li-dot {
    background: var(--success);
}

.cons-col .li-dot {
    background: var(--error);
}

.winners-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table.winners-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 500px;
    text-align: left;
}

table.winners-table thead th {
    background: var(--bg-nav);
    padding: 12px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border-color);
}

table.winners-table thead th:first-child {
    border-radius: var(--radius-sm) 0 0 0;
}

table.winners-table thead th:last-child {
    border-radius: 0 var(--radius-sm) 0 0;
}

table.winners-table tbody tr {
    transition: background var(--transition);
}

table.winners-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

table.winners-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.15);
}

table.winners-table tbody tr:nth-child(even):hover {
    background: rgba(255, 255, 255, 0.04);
}

table.winners-table tbody td {
    padding: 12px 16px;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

table.winners-table .rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
}

table.winners-table .rank-1 .rank-badge {
    background: linear-gradient(135deg, #f5c842, #e8762c);
    color: #1a1a1a;
}

table.winners-table .rank-2 .rank-badge {
    background: linear-gradient(135deg, #c0c0c0, #9a9a9a);
    color: #1a1a1a;
}

table.winners-table .rank-3 .rank-badge {
    background: linear-gradient(135deg, #cd7f32, #a05a20);
    color: #fff;
}

.winner-amount {
    color: var(--btn-green);
    font-weight: 600;
}

.winner-nick {
    color: var(--text-light);
    font-weight: 400;
}

.screenshots-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.screenshots-grid::-webkit-scrollbar {
    height: 4px;
}

.screenshots-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.screenshots-grid::-webkit-scrollbar-thumb {
    background: var(--btn-blue);
    border-radius: 2px;
}

.screenshot-item {
    flex-shrink: 0;
    width: calc((100% - 48px) / 5);
    min-width: 200px;
    scroll-snap-align: start;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
    cursor: pointer;
}

.screenshot-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.screenshot-item:hover img {
    transform: scale(1.06);
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(75, 10, 78, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-overlay svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.slider-dots {
    display: flex;
    gap: 6px;
}

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

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

.slider-nav {
    display: flex;
    gap: 8px;
}

.slider-nav button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.slider-nav button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.slider-nav button svg {
    width: 18px;
    height: 18px;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.strategy-card {
    background: var(--card-bg-alt);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}

.strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(129, 222, 34, 0.4);
}

.strategy-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

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

.strategy-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--btn-blue);
    padding: 2px 8px;
    background: rgba(23, 149, 227, 0.12);
    border-radius: 4px;
    width: fit-content;
}

.strategy-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
}

.strategy-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
    flex: 1;
}

.strategy-card .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.review-block {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.review-block .section-title {
    margin-bottom: 24px;
}

.author-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 28px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--btn-green), var(--btn-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
    min-width: 0;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

.author-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 2px;
}

.author-updated {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

.author-link {
    font-size: 0.8rem;
    color: var(--btn-blue);
    flex-shrink: 0;
}

.content-body {
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
}

.content-body h1, .content-body h2, .content-body h3,
.content-body h4, .content-body h5, .content-body h6 {
    color: #fff;
    font-weight: 600;
    margin: 28px 0 12px;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.content-body h2 {
    font-size: 1.5rem;
}

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

.content-body h4 {
    font-size: 1.1rem;
}

.content-body p {
    margin-bottom: 16px;
}

.content-body a {
    color: var(--btn-blue);
}

.content-body a:hover {
    color: var(--btn-green);
}

.content-body ul, .content-body ol {
    margin: 12px 0 20px 20px;
}

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

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

.content-body li {
    margin-bottom: 6px;
    line-height: 1.65;
}

.content-body strong {
    color: var(--text-light);
    font-weight: 600;
}

.content-body em {
    font-style: italic;
    color: var(--text-light);
}

.content-body blockquote {
    border-left: 3px solid var(--btn-green);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(129, 222, 34, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text-muted);
    font-style: italic;
}

.content-body table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
    overflow-x: auto;
    display: block;
    text-align: left;
}

.content-body table th {
    background: var(--bg-nav);
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

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

.content-body table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.content-body code {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85em;
    font-family: monospace;
}

.content-body hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 28px 0;
}

.faq-block {
    margin-bottom: 24px;
}

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

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

.faq-item.open {
    border-color: rgba(129, 222, 34, 0.4);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-light);
    user-select: none;
}

.faq-question:hover {
    color: var(--btn-green);
}

.faq-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--text-muted);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s ease;
    padding: 0 20px;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 20px 16px;
}

.site-footer {
    background: var(--bg-nav);
    margin-top: 48px;
    border-top: 2px solid var(--bg-nav-darker);
}

.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 1fr;
    gap: 32px;
}

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

.footer-logo img {
    height: 48px;
    width: auto;
    opacity: 0.9;
}

.footer-about {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 16px;
}

.footer-col-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

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

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.04em;
}

.social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.social-link:hover {
    background: var(--btn-blue);
    color: #fff;
    transform: translateY(-2px);
}

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

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

.trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.trust-badge.age-badge {
    background: rgba(232, 64, 64, 0.15);
    border-color: rgba(232, 64, 64, 0.3);
    color: rgba(232, 100, 100, 0.9);
    font-size: 0.9rem;
    font-weight: 700;
}

.au-flag {
    width: 28px;
    height: 20px;
    border-radius: 3px;
    overflow: hidden;
    display: inline-block;
    flex-shrink: 0;
}

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

.footer-bottom-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
}

.footer-copyright strong {
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.7;
    max-width: 600px;
}

.provider-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.provider-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.provider-logo {
    height: 28px;
    width: auto;
    opacity: 0.55;
    filter: grayscale(0.4);
    transition: opacity var(--transition);
}

.provider-logo:hover {
    opacity: 0.8;
}

.widget-fixed {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 900;
    background: var(--bg-nav);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translateY(0);
    animation: slideInWidget 0.6s ease 1.5s both;
}

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

.widget-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
    padding: 4px;
    font-size: 1rem;
    transition: color var(--transition);
}

.widget-close:hover {
    color: var(--text-light);
}

.widget-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(129, 222, 34, 0.3));
}

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

.widget-bonus-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 400;
}

.widget-bonus-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-top: 2px;
}

.widget-bonus-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.widget-fixed .btn {
    width: 100%;
    font-size: 0.85rem;
    padding: 10px;
}

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

.section-spacing {
    margin-bottom: 24px;
}

.info-table-wrap {
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.info-table td {
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
}

.info-table td:first-child {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.8rem;
    width: 40%;
    background: rgba(0, 0, 0, 0.12);
}

.info-table td:last-child {
    color: var(--text-light);
    font-weight: 400;
}

.au-svg {
    display: inline-block;
    width: 22px;
    height: 16px;
    vertical-align: middle;
}

.d-none {
    display: none !important;
}

.d-flex {
    display: flex !important;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

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

.text-green {
    color: var(--btn-green) !important;
}

.text-blue {
    color: var(--btn-blue) !important;
}

.text-gold {
    color: var(--accent-gold) !important;
}

.wp-block-group {
    display: block;
}

.wp-block-columns {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.wp-block-column {
    flex: 1;
    min-width: 0;
}

.aligncenter {
    text-align: center;
}

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

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

.entry-content {
    display: block;
}

.post-thumbnail {
    display: block;
}

.wp-post-image {
    max-width: 100%;
}

.elementor-section {
    display: block;
}

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

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

.wp-embed-responsive {
    display: block;
}

.wp-caption-text {
    font-size: 0.8em;
    text-align: center;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(129, 222, 34, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(129, 222, 34, 0.6);
    }
}

.btn-play {
    animation: pulse-glow 2.5s ease infinite;
}

.btn-play:hover {
    animation: none;
}

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

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

.scroll-fade {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

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

    .hero-image {
        width: 200px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 64px;
    }

    .main-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
        margin-left: auto;
    }

    .mobile-nav {
        display: flex;
    }

    .header-cta {
        margin-left: 0;
    }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .hero-image {
        width: 140px;
        align-self: flex-end;
    }

    .hero-container {
        padding: 40px 16px;
    }

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

    .pros-cons-grid {
        flex-direction: column;
    }

    .section-block {
        padding: 24px 16px;
    }

    .review-block {
        padding: 24px 16px;
    }

    .screenshot-item {
        width: calc(100vw - 64px);
    }

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

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

    .game-demo-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-inner {
        flex-direction: column;
    }

    .widget-fixed {
        width: 180px;
        bottom: 16px;
        right: 12px;
    }

    .widget-logo img {
        height: 40px;
    }

    .header-inner {
        gap: 8px;
    }

    .winner-ticker {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 16px;
    }

    .trust-row {
        gap: 8px;
    }

    .widget-fixed {
        display: none;
    }
}
