@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;500;600&display=swap');

:root {
    --color-bg: #5693c0;
    --color-nav: #292929;
    --color-cta-primary: #e3a80a;
    --color-cta-secondary: #60a1d9;
    --color-text-light: #f0f4f8;
    --color-text-dark: #1a1a1a;
    --color-text-muted: #b0c4d8;
    --color-card-bg: #1e3a50;
    --color-card-border: #2e5472;
    --color-gold-light: #f5c842;
    --color-nav-hover: #3a7fbf;
    --font-heading: 'Archivo Black', sans-serif;
    --font-body: 'Archivo', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-btn: 0 2px 12px rgba(227, 168, 10, 0.4);
    --transition: 0.25s ease;
}

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

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

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

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

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

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

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

ul {
    list-style: none;
}

.x8f2a, .k3p9b {
    display: none;
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
}

.wp-block-placeholder {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    left: -9999px;
}

.wpcf7-form-hidden {
    display: none !important;
}

.wrapper {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}

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

.container--wide {
    max-width: 1400px;
}

.box {
    width: 100%;
}

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

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.header-logo span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-cta-primary);
    letter-spacing: 1px;
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.header-nav a:hover {
    background: rgba(96, 161, 217, 0.15);
    color: var(--color-text-light);
}

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

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

.header-winner {
    background: rgba(96, 161, 217, 0.12);
    border: 1px solid rgba(96, 161, 217, 0.25);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-winner strong {
    color: var(--color-gold-light);
}

.header-winner-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
    flex-shrink: 0;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

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

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

.btn--primary {
    background: linear-gradient(135deg, var(--color-cta-primary) 0%, #f5c842 100%);
    color: var(--color-text-dark);
    box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
    box-shadow: 0 4px 20px rgba(227, 168, 10, 0.6);
    color: var(--color-text-dark);
}

.btn--secondary {
    background: var(--color-cta-secondary);
    color: #fff;
    box-shadow: 0 2px 12px rgba(96, 161, 217, 0.35);
}

.btn--secondary:hover {
    background: #4a8fc8;
    color: #fff;
}

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

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

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

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

.btn--icon svg {
    width: 18px;
    height: 18px;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    gap: 5px;
    padding: 6px;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text-light);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

.burger.is-active span:nth-child(2) {
    opacity: 0;
}

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

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--color-nav);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.mobile-nav.is-open {
    display: flex;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.mobile-nav a:hover {
    background: rgba(96, 161, 217, 0.12);
    color: var(--color-text-light);
}

.mobile-nav a svg {
    width: 16px;
    height: 16px;
}

.mobile-nav .mobile-nav-btns {
    display: flex;
    gap: 8px;
    padding: 8px 0 4px;
}

.mobile-nav .mobile-nav-btns .btn {
    flex: 1;
    justify-content: center;
}

.section {
    padding: 56px 0;
}

.section--dark {
    background: rgba(0, 0, 0, 0.25);
}

.section--darker {
    background: rgba(0, 0, 0, 0.4);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--color-text-light);
    margin-bottom: 8px;
    text-balance: balance;
}

.section-title span {
    color: var(--color-cta-primary);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.section-header {
    margin-bottom: 32px;
}

.hero {
    background: linear-gradient(160deg, #1a2a3a 0%, #0f1e2e 50%, #162640 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/tower-rush-hero.png') center/cover no-repeat;
    opacity: 0.35;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 20, 35, 0.92) 0%, rgba(10, 20, 35, 0.5) 60%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 64px 0;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227, 168, 10, 0.15);
    border: 1px solid rgba(227, 168, 10, 0.4);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.8rem;
    color: var(--color-gold-light);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

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

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    color: var(--color-cta-primary);
}

.hero-desc {
    font-size: 1.05rem;
    color: #c8dcea;
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 500px;
}

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

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

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-cta-primary);
    display: block;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.hero-provider {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.hero-provider img {
    height: 24px;
    width: auto;
    opacity: 0.75;
}

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

.demo-wrap {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #0a1520;
}

.demo-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.demo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 1px solid var(--color-card-border);
    background: rgba(0, 0, 0, 0.2);
}

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

.demo-info strong {
    color: var(--color-text-light);
}

.demo-actions {
    display: flex;
    gap: 10px;
}

.mobile-section {
    padding: 56px 0;
}

.mobile-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}

.phone-frame {
    width: 240px;
    position: relative;
    margin: 0 auto;
}

.phone-outer {
    background: linear-gradient(160deg, #2a3a4a 0%, #1a2a36 100%);
    border-radius: 36px;
    padding: 14px 10px;
    box-shadow: 0 0 0 2px rgba(96, 161, 217, 0.3), var(--shadow-card);
    position: relative;
}

.phone-outer::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
    z-index: 2;
}

.phone-screen {
    border-radius: 26px;
    overflow: hidden;
    background: #0a1520;
    aspect-ratio: 9/19.5;
    position: relative;
}

.phone-screen img {
    width: 100%;
    object-fit: cover;
}

.mobile-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.mobile-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.mobile-table th {
    background: rgba(0, 0, 0, 0.3);
    color: var(--color-cta-primary);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--color-card-border);
    white-space: nowrap;
}

.mobile-table td {
    padding: 10px 14px;
    border: 1px solid var(--color-card-border);
    color: var(--color-text-light);
    background: rgba(0, 0, 0, 0.15);
    vertical-align: top;
}

.mobile-table tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.25);
}

.mobile-app-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(96, 161, 217, 0.35);
    border-radius: var(--radius-md);
    padding: 10px 18px;
    color: var(--color-text-light);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    text-decoration: none;
}

.btn-store:hover {
    background: rgba(96, 161, 217, 0.15);
    border-color: var(--color-cta-secondary);
    transform: translateY(-2px);
    color: #fff;
}

.btn-store svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.btn-store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-store-sub {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.leaderboard-section {
    padding: 56px 0;
}

.leaderboard-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 540px;
}

.leaderboard-table thead tr {
    background: linear-gradient(90deg, #0f2030 0%, #1a3040 100%);
}

.leaderboard-table th {
    padding: 14px 18px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--color-cta-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--color-card-border);
    white-space: nowrap;
}

.leaderboard-table td {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(46, 84, 114, 0.4);
    color: var(--color-text-light);
    font-size: 0.9rem;
    background: rgba(10, 25, 40, 0.5);
    white-space: nowrap;
}

.leaderboard-table tbody tr:nth-child(even) td {
    background: rgba(10, 25, 40, 0.7);
}

.leaderboard-table tbody tr:hover td {
    background: rgba(96, 161, 217, 0.08);
}

.lb-rank {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    width: 40px;
    text-align: center;
}

.lb-rank--1 {
    color: #ffd700;
}

.lb-rank--2 {
    color: #c0c0c0;
}

.lb-rank--3 {
    color: #cd7f32;
}

.lb-nick {
    font-weight: 600;
}

.lb-mult {
    color: var(--color-cta-secondary);
    font-weight: 600;
}

.lb-win {
    color: var(--color-cta-primary);
    font-weight: 700;
    font-family: var(--font-heading);
}

.lb-time {
    color: var(--color-text-muted);
    font-size: 0.82rem;
}

.video-section {
    padding: 56px 0;
}

.video-wrap {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.video-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    background: #000;
}

.video-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    padding: 16px 24px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-card-border);
}

.bonuses-section {
    padding: 56px 0;
}

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

.bonus-card {
    background: linear-gradient(145deg, #1e3a50 0%, #152a3c 100%);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-cta-primary), var(--color-cta-secondary));
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.bonus-badge {
    display: inline-block;
    background: rgba(227, 168, 10, 0.15);
    border: 1px solid rgba(227, 168, 10, 0.35);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.72rem;
    color: var(--color-gold-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.bonus-casino {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-text-light);
}

.bonus-amount {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-cta-primary);
    line-height: 1;
}

.bonus-amount span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-family: var(--font-body);
}

.bonus-terms {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.bonus-feature::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-cta-secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

.bonus-footer {
    margin-top: auto;
}

.bonus-slider {
    display: none;
}

.review-section {
    padding: 56px 0;
}

.author-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-cta-secondary), var(--color-cta-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text-dark);
    flex-shrink: 0;
}

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

.author-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-text-light);
}

.author-bio {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-top: 2px;
}

.author-links {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.author-links a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--color-cta-secondary);
    transition: color var(--transition);
}

.author-links a:hover {
    color: var(--color-cta-primary);
}

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

.review-meta {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.review-content {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-md);
    padding: 32px;
}

.review-content h2,
.review-content h3,
.review-content h4 {
    font-family: var(--font-heading);
    color: var(--color-text-light);
    margin: 24px 0 10px;
    line-height: 1.3;
}

.review-content h2 {
    font-size: 1.5rem;
    color: var(--color-cta-primary);
}

.review-content h3 {
    font-size: 1.2rem;
}

.review-content h4 {
    font-size: 1rem;
}

.review-content p {
    margin-bottom: 14px;
    color: #d0e4f0;
    line-height: 1.75;
}

.review-content ul, .review-content ol {
    margin: 10px 0 16px 20px;
}

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

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

.review-content li {
    margin-bottom: 6px;
    color: #d0e4f0;
    line-height: 1.65;
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow-x: auto;
    display: block;
}

.review-content table th {
    background: rgba(0, 0, 0, 0.4);
    color: var(--color-cta-primary);
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--color-card-border);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    white-space: nowrap;
}

.review-content table td {
    padding: 10px 14px;
    border: 1px solid var(--color-card-border);
    color: var(--color-text-light);
    vertical-align: top;
}

.review-content a {
    color: var(--color-cta-secondary);
}

.review-content a:hover {
    color: var(--color-cta-primary);
}

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

.review-content blockquote {
    border-left: 4px solid var(--color-cta-secondary);
    padding: 12px 18px;
    margin: 16px 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #b8d4e8;
    font-style: italic;
}

.faq-section {
    padding: 56px 0;
}

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

.faq-item {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.is-open {
    border-color: rgba(96, 161, 217, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    line-height: 1.4;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(96, 161, 217, 0.06);
}

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(96, 161, 217, 0.15);
    border: 1px solid rgba(96, 161, 217, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    background: rgba(96, 161, 217, 0.25);
}

.faq-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--color-cta-secondary);
}

.faq-answer {
    display: none;
    padding: 0 22px 18px;
    color: #bdd4e7;
    font-size: 0.9rem;
    line-height: 1.75;
    border-top: 1px solid rgba(46, 84, 114, 0.3);
    padding-top: 14px;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.site-footer {
    background: var(--color-nav);
    padding: 48px 0 0;
    margin-top: 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 240px 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-cta-primary);
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

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

.footer-nav-list a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-nav-list a:hover {
    color: var(--color-cta-secondary);
}

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

.footer-social {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
    color: rgba(255, 255, 255, 0.6);
}

.footer-social:hover {
    background: rgba(96, 161, 217, 0.2);
    border-color: var(--color-cta-secondary);
    color: #fff;
}

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

.footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.footer-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.footer-badge--highlight {
    border-color: rgba(227, 168, 10, 0.3);
    color: var(--color-gold-light);
    background: rgba(227, 168, 10, 0.06);
}

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

.footer-payment {
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.09);
    font-weight: 600;
}

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

.footer-copyright a {
    color: rgba(255, 255, 255, 0.45);
}

.footer-copyright a:hover {
    color: var(--color-cta-secondary);
}

.footer-flag {
    display: inline;
    vertical-align: middle;
    margin-right: 4px;
}

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

.footer-provider img {
    height: 22px;
    width: auto;
    opacity: 0.55;
    filter: grayscale(0.3);
}

.sticky-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    width: 220px;
}

.sticky-widget-inner {
    background: linear-gradient(145deg, #1a2e42 0%, #0f1e2e 100%);
    border: 1px solid rgba(96, 161, 217, 0.4);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
}

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

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

.sticky-logo {
    height: 36px;
    width: auto;
}

.sticky-bonus {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-cta-primary);
    line-height: 1.2;
}

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

.sticky-widget .btn {
    width: 100%;
}

.info-page-content {
    padding: 48px 0 64px;
}

.info-page-content h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 24px;
}

.info-page-body {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-md);
    padding: 32px;
    line-height: 1.75;
    color: #d0e4f0;
}

.info-page-body h2 {
    font-size: 1.3rem;
    color: var(--color-cta-primary);
    margin: 20px 0 10px;
}

.info-page-body h3 {
    font-size: 1.1rem;
    margin: 16px 0 8px;
}

.info-page-body p {
    margin-bottom: 14px;
}

.info-page-body ul, .info-page-body ol {
    margin: 10px 0 14px 20px;
}

.info-page-body ul {
    list-style: disc;
}

.info-page-body ol {
    list-style: decimal;
}

.info-page-body li {
    margin-bottom: 6px;
}

.info-page-body a {
    color: var(--color-cta-secondary);
}

.info-page-body a:hover {
    color: var(--color-cta-primary);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    padding: 14px 0 0;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--color-cta-secondary);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.2);
}

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

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

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

.wp-site-blocks {
    padding-top: 0 !important;
}

.entry-content {
    max-width: none;
}

.wp-block-post-title {
    display: none;
}

.elementor-section {
    position: static;
}

.generate-columns-container {
    display: flex;
    flex-wrap: wrap;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-60px);
    }
}

.multiplier-float {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-cta-primary);
    text-shadow: 0 0 10px rgba(227, 168, 10, 0.6);
    pointer-events: none;
    animation: float-up 2.5s ease forwards;
    z-index: 3;
}

@media (max-width: 1024px) {
    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-logo-block {
        grid-column: 1 / -1;
    }
}

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

    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero-content {
        padding: 40px 0;
    }

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

    .phone-frame {
        margin: 0 auto 16px;
    }

    .bonuses-grid {
        display: none;
    }

    .bonus-slider {
        display: block;
    }

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

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

    .section {
        padding: 40px 0;
    }

    .header-winner {
        display: none;
    }
}

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .mobile-app-btns {
        flex-direction: column;
    }

    .btn--lg {
        font-size: 1rem;
        padding: 12px 24px;
    }
}

.swiper-bonus {
    width: 100%;
    overflow: hidden;
}

.swiper-bonus-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}

.swiper-bonus-track .bonus-card {
    flex: 0 0 85%;
    min-width: 280px;
}

.swiper-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

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

.swiper-dot.is-active {
    background: var(--color-cta-secondary);
}

@media (max-width: 900px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
    }

    .wrapper,
    main,
    section,
    .container,
    .box {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .container,
    .container--wide {
        padding-left: 14px;
        padding-right: 14px;
    }

    .site-header {
        width: 100%;
    }

    .header-inner {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
        min-height: 60px;
        padding: 8px 14px;
        gap: 8px;
    }

    .header-logo {
        flex: 0 1 auto;
        min-width: 0;
    }

    .header-logo img {
        width: auto;
        max-width: 120px;
        height: 36px;
        object-fit: contain;
    }

    .header-nav,
    .header-winner {
        display: none;
    }

    .header-buttons {
        margin-left: auto;
        gap: 6px;
    }

    .header-buttons .btn {
        padding: 7px 10px;
        font-size: .72rem;
    }

    .burger {
        display: flex;
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        position: relative;
        z-index: 10002;
    }

    .mobile-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: calc(100dvh - 60px);
        padding: 16px 14px 90px;
        background: var(--color-nav);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
    }

    .mobile-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .mobile-nav a {
        width: 100%;
        min-height: 48px;
        padding: 12px 14px;
        border: 1px solid rgba(255, 255, 255, .08);
        background: rgba(255, 255, 255, .04);
        color: #fff;
        font-size: .9rem;
    }

    .mobile-nav .mobile-nav-btns {
        width: 100%;
        flex-direction: column;
    }

    .mobile-nav .mobile-nav-btns .btn {
        width: 100%;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    .section,
    .mobile-section,
    .leaderboard-section,
    .video-section,
    .bonuses-section,
    .review-section,
    .faq-section {
        padding: 34px 0;
    }

    .section-header {
        margin-bottom: 22px;
    }

    .section-title {
        max-width: 100%;
        font-size: clamp(1.35rem, 6vw, 1.8rem);
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .section-subtitle {
        max-width: 100%;
        margin-bottom: 22px;
        font-size: .9rem;
        overflow-wrap: anywhere;
    }

    .hero {
        min-height: auto;
        background-position: center;
    }

    .hero::before {
        background-position: center;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(10, 20, 35, .9), rgba(10, 20, 35, .7));
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 38px 0;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    .hero-desc {
        max-width: 100%;
        font-size: .92rem;
        line-height: 1.6;
    }

    .hero-stats {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 10px;
        margin-bottom: 22px;
    }

    .hero-stat {
        padding: 10px 6px;
        border-radius: 8px;
        background: rgba(0, 0, 0, .2);
    }

    .hero-stat-value {
        font-size: 1.2rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns:1fr;
        width: 100%;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

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

    .demo-wrap,
    .video-wrap {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        border-radius: 12px;
    }

    .demo-iframe-wrap,
    .video-iframe-wrap {
        position: relative;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 0;
        aspect-ratio: 16/10;
    }

    .demo-iframe-wrap iframe,
    .video-iframe-wrap iframe {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        max-width: 100%;
        border: 0;
    }

    .demo-footer {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
    }

    .demo-info {
        width: 100%;
        font-size: .8rem;
    }

    .demo-actions {
        display: grid;
        grid-template-columns:1fr;
        width: 100%;
        gap: 8px;
    }

    .demo-actions .btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
        white-space: normal;
    }

    .mobile-grid {
        display: grid;
        grid-template-columns:1fr;
        gap: 26px;
        width: 100%;
    }

    .phone-frame {
        width: min(220px, 75vw);
        max-width: 100%;
        margin: 0 auto;
    }

    .phone-outer {
        width: 100%;
    }

    .mobile-info {
        width: 100%;
        min-width: 0;
        gap: 18px;
    }

    .mobile-table-wrap,
    .leaderboard-table-wrap,
    .review-content table,
    .info-page-body table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-table {
        min-width: 560px;
    }

    .leaderboard-table {
        min-width: 600px;
    }

    .mobile-app-btns {
        display: grid;
        grid-template-columns:1fr;
        width: 100%;
    }

    .btn-store {
        width: 100%;
        justify-content: center;
    }

    .bonuses-grid {
        display: grid;
        grid-template-columns:1fr;
        gap: 14px;
    }

    .bonus-slider {
        display: none;
    }

    .bonus-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 20px 16px;
        border-radius: 12px;
    }

    .bonus-casino,
    .bonus-amount,
    .bonus-terms,
    .bonus-feature {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .bonus-footer .btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .author-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .author-info {
        width: 100%;
        min-width: 0;
    }

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

    .review-content,
    .info-page-body {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 20px 16px;
        overflow: hidden;
    }

    .review-content h1,
    .review-content h2,
    .review-content h3,
    .review-content h4,
    .info-page-body h1,
    .info-page-body h2,
    .info-page-body h3 {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .review-content p,
    .review-content li,
    .info-page-body p,
    .info-page-body li {
        max-width: 100%;
        font-size: .9rem;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .review-content img,
    .review-content video,
    .review-content iframe,
    .info-page-body img,
    .info-page-body video,
    .info-page-body iframe {
        display: block;
        width: auto;
        max-width: 100%;
        height: auto;
    }

    .review-content pre,
    .info-page-body pre {
        max-width: 100%;
        overflow-x: auto;
    }

    .review-content a,
    .info-page-body a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .faq-list {
        width: 100%;
        gap: 8px;
    }

    .faq-item {
        width: 100%;
        max-width: 100%;
    }

    .faq-question {
        width: 100%;
        padding: 15px 14px;
        font-size: .88rem;
    }

    .faq-answer {
        padding: 12px 14px 16px;
        font-size: .84rem;
    }

    .footer-inner {
        display: grid;
        grid-template-columns:1fr;
        gap: 24px;
        width: 100%;
    }

    .footer-logo-block {
        grid-column: auto;
    }

    .footer-bottom {
        width: 100%;
    }

    .footer-badges,
    .footer-payments,
    .footer-provider {
        width: 100%;
        flex-wrap: wrap;
    }

    .sticky-widget {
        right: 8px;
        bottom: 8px;
        width: 160px;
        max-width: calc(100vw - 16px);
    }

    .sticky-widget-inner {
        padding: 10px;
        gap: 7px;
    }

    .sticky-logo {
        height: 28px;
    }

    .sticky-bonus {
        font-size: .85rem;
    }

    .sticky-sub {
        font-size: .64rem;
    }

    .sticky-widget .btn {
        padding: 8px 10px;
        font-size: .7rem;
    }

}

@media (max-width: 520px) {

    .container,
    .container--wide {
        padding-left: 8px;
        padding-right: 8px;
    }

    .header-inner {
        padding: 7px 8px;
    }

    .header-logo img {
        max-width: 100px;
        height: 30px;
    }

    .header-buttons .btn:first-child {
        display: none;
    }

    .header-buttons .btn {
        padding: 6px 9px;
        font-size: .68rem;
    }

    .hero-content {
        padding: 30px 0;
    }

    .hero h1 {
        font-size: 1.65rem;
    }

    .hero-desc {
        font-size: .84rem;
    }

    .hero-stats {
        gap: 7px;
    }

    .hero-stat {
        padding: 8px 4px;
    }

    .hero-stat-value {
        font-size: 1rem;
    }

    .hero-stat-label {
        font-size: .6rem;
    }

    .section,
    .demo-section,
    .mobile-section,
    .leaderboard-section,
    .video-section,
    .bonuses-section,
    .review-section,
    .faq-section {
        padding: 26px 0;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .section-subtitle {
        font-size: .82rem;
    }

    .demo-iframe-wrap {
        aspect-ratio: 9/16;
        min-height: 520px;
    }

    .video-iframe-wrap {
        aspect-ratio: 16/9;
    }

    .demo-footer,
    .video-caption {
        padding: 12px 10px;
    }

    .mobile-table {
        min-width: 520px;
    }

    .leaderboard-table {
        min-width: 560px;
    }

    .bonus-card {
        padding: 16px 12px;
    }

    .bonus-amount {
        font-size: 1.35rem;
    }

    .review-content,
    .info-page-body {
        padding: 16px 12px;
    }

    .review-content h2 {
        font-size: 1.2rem;
    }

    .review-content h3 {
        font-size: 1.05rem;
    }

    .review-content p,
    .review-content li,
    .info-page-body p,
    .info-page-body li {
        font-size: .84rem;
    }

    .faq-question {
        padding: 13px 12px;
        font-size: .82rem;
    }

    .faq-answer {
        padding: 10px 12px 14px;
        font-size: .8rem;
    }

    .site-footer {
        padding-top: 32px;
    }

    .sticky-widget {
        width: 135px;
    }

    .sticky-widget-inner {
        padding: 8px;
    }

    .sticky-logo {
        height: 24px;
    }

    .sticky-bonus {
        font-size: .75rem;
    }

    .sticky-sub {
        display: none;
    }

}

:root {
    --header-height: 64px;
}

html {
    scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
    padding-top: var(--header-height) !important;
}

.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 999999 !important;
    margin: 0 !important;
    background: var(--color-nav, #292929) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .35);
}

.site-header .header-inner {
    min-height: var(--header-height);
}

.site-header .mobile-nav {
    position: fixed !important;
    top: var(--header-height) !important;
    left: 0 !important;
    right: 0 !important;
    max-height: calc(100dvh - var(--header-height)) !important;
}

#mobile,
#winners,
#bonuses,
#review,
#faq {
    scroll-margin-top: calc(var(--header-height) + 16px);
}

#demo.demo-section {
    width: 100%;
    padding: 48px 0;
}

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

#demo .section-header {
    width: 100%;
    max-width: 820px;
    margin-bottom: 24px;
}

#demo .section-title {
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.2;
    overflow-wrap: anywhere;
}

#demo .section-subtitle {
    margin: 0;
    max-width: 760px;
    color: var(--color-text-muted);
    font-size: .95rem;
    line-height: 1.7;
}

#demo .demo-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    background: var(--color-card-bg);
    box-shadow: var(--shadow-card);
}

#demo .demo-iframe-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    aspect-ratio: 16/9;
    padding: 0;
    background: #000;
}

#demo .demo-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    border: 0;
    background: #000;
    pointer-events: auto;
    touch-action: auto;
}

#demo .demo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 16px 20px;
    border-top: 1px solid var(--color-card-border);
    background: rgba(0, 0, 0, .22);
}

#demo .demo-info {
    flex: 1;
    min-width: 0;
    margin: 0;
    color: var(--color-text-muted);
    font-size: .84rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

#demo .demo-info strong {
    color: var(--color-text-light);
}

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

#demo .demo-actions .btn {
    min-height: 40px;
    white-space: nowrap;
}

@media (max-width: 768px) {

    #demo.demo-section {
        padding: 34px 0;
    }

    #demo .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    #demo .section-header {
        margin-bottom: 18px;
    }

    #demo .section-title {
        font-size: 1.45rem;
    }

    #demo .section-subtitle {
        font-size: .88rem;
        line-height: 1.6;
    }

    #demo .demo-wrap {
        border-radius: 12px;
    }

    #demo .demo-iframe-wrap {
        aspect-ratio: 16/10;
        min-height: 0;
    }

    #demo .demo-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
    }

    #demo .demo-info {
        width: 100%;
        font-size: .8rem;
    }

    #demo .demo-actions {
        display: grid;
        grid-template-columns:1fr 1fr;
        width: 100%;
        gap: 8px;
    }

    #demo .demo-actions .btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 520px) {

    #demo.demo-section {
        padding: 26px 0;
    }

    #demo .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    #demo .section-title {
        font-size: 1.2rem;
    }

    #demo .section-subtitle {
        font-size: .82rem;
    }

    #demo .demo-wrap {
        border-radius: 9px;
    }

    #demo .demo-iframe-wrap {
        aspect-ratio: 9/16;
        height: min(72vh, 620px);
        min-height: 500px;
        max-height: 620px;
    }

    #demo .demo-footer {
        padding: 12px 10px;
    }

    #demo .demo-info {
        font-size: .74rem;
        line-height: 1.5;
    }

    #demo .demo-actions {
        grid-template-columns:1fr;
    }

    #demo .demo-actions .btn {
        min-height: 44px;
        padding: 10px 12px;
        font-size: .76rem;
    }
}
