:root {
    --color-header: #bb7b28;
    --color-header-dark: #9a6420;
    --color-btn-gold: #dcbd36;
    --color-btn-gold-hover: #c9ab2a;
    --color-btn-red: #9e0d09;
    --color-btn-red-hover: #7e0a07;
    --color-bg: #3b0916;
    --color-bg-dark: #2a0610;
    --color-bg-card: #4e1220;
    --color-bg-card2: #5c1828;
    --color-text: #f5e6c8;
    --color-text-muted: #c9a87a;
    --color-text-dark: #1a0008;
    --color-border: #7a3d1a;
    --color-border-light: #bb7b2840;
    --color-gold: #dcbd36;
    --color-gold-light: #f0d060;
    --font-main: 'Lato', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-btn: 0 2px 12px rgba(220,189,54,0.3);
    --transition: 0.25s ease;
}

*, *::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(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-gold-light);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    color: var(--color-gold);
}

h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); margin-bottom: 0.8rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 0.6rem; }

p { margin-bottom: 0.9rem; }

ul, ol {
    padding-left: 1.4rem;
    margin-bottom: 0.9rem;
}

li { margin-bottom: 0.3rem; }

.x7k2m { display: none; visibility: hidden; }
.q9p3r { opacity: 0; pointer-events: none; position: absolute; }
.wp-container-core { box-sizing: border-box; }
.elementor-element { position: relative; }

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

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

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

.ct-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-card);
}

.ct-card--alt {
    background: var(--color-bg-card2);
    border-radius: var(--radius-lg);
}

.ct-card--rounded {
    border-radius: var(--radius-lg);
}

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

.ct-flex--gap { gap: 16px; }
.ct-flex--gap-lg { gap: 32px; }
.ct-flex--wrap { flex-wrap: wrap; }
.ct-flex--col { flex-direction: column; }
.ct-flex--between { justify-content: space-between; }
.ct-flex--center { justify-content: center; align-items: center; }

.ct-grid-2 {
    display: flex;
    gap: 24px;
}

.ct-grid-2 > * {
    flex: 1 1 0;
    min-width: 0;
}

.ct-text-center { text-align: center; }
.ct-mt-1 { margin-top: 8px; }
.ct-mt-2 { margin-top: 16px; }
.ct-mt-3 { margin-top: 24px; }
.ct-mb-2 { margin-bottom: 16px; }
.ct-mb-3 { margin-bottom: 24px; }

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

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

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

.btn--gold {
    background: var(--color-btn-gold);
    color: var(--color-text-dark);
}

.btn--gold:hover {
    background: var(--color-btn-gold-hover);
    color: var(--color-text-dark);
}

.btn--red {
    background: var(--color-btn-red);
    color: #fff;
}

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

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

.btn--outline:hover {
    background: var(--color-btn-gold);
    color: var(--color-text-dark);
}

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

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

.btn--app {
    background: #111;
    color: #fff;
    border: 1px solid #444;
    gap: 10px;
    padding: 10px 18px;
}

.btn--app:hover {
    background: #222;
    color: #fff;
    transform: translateY(-2px);
}

.btn--app svg {
    flex-shrink: 0;
}

.ct-section-title {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.ct-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-btn-gold);
    border-radius: 2px;
    margin: 10px auto 0;
}

.ct-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 32px 0;
}

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

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

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

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

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

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

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

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

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

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-dark);
    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; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 999;
}

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

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: var(--color-header-dark);
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    z-index: 1001;
    padding: 70px 20px 30px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

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

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background var(--transition);
}

.mobile-nav a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--color-gold);
}

.mobile-nav a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}

.hero {
    background: var(--color-bg-dark);
    background-image: url('/crazy-time-game-title.webp');
    background-size: cover;
    background-position: center top;
    position: relative;
    padding: 56px 0 48px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59,9,22,0.88) 0%, rgba(59,9,22,0.65) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

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

.hero-frame {
    flex: 0 0 480px;
    max-width: 480px;
}

.hero-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    margin-bottom: 12px;
    color: var(--color-gold-light);
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

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

.game-iframe {
    width: 100%;
    aspect-ratio: 16/10;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-card);
}

.game-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.info-table tr {
    border-bottom: 1px solid var(--color-border-light);
}

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

.info-table td {
    padding: 10px 8px;
    vertical-align: middle;
}

.info-table td:first-child {
    color: var(--color-text-muted);
    white-space: nowrap;
    width: 48%;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.info-table svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.app-block {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
}

.app-phone-frame {
    flex: 0 0 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    width: 200px;
    background: #111;
    border-radius: 36px;
    border: 4px solid #444;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6), inset 0 0 0 2px #222;
    position: relative;
    overflow: hidden;
    padding: 16px 8px;
}

.phone-mockup::before {
    content: '';
    display: block;
    width: 60px;
    height: 10px;
    background: #333;
    border-radius: 6px;
    margin: 0 auto 10px;
}

.phone-mockup::after {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    background: #333;
    border-radius: 50%;
    margin: 10px auto 0;
}

.phone-mockup img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

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

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.screenshots-grid {
    display: flex;
    gap: 16px;
}

.screenshots-grid img {
    flex: 1 1 0;
    min-width: 0;
    border-radius: var(--radius-md);
    border: 2px solid var(--color-border);
    object-fit: cover;
    aspect-ratio: 16/9;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.screenshots-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.screenshots-slider {
    position: relative;
    overflow: hidden;
    display: none;
}

.screenshots-slider-track {
    display: flex;
    gap: 12px;
    transition: transform 0.35s ease;
}

.screenshots-slider-track img {
    flex: 0 0 100%;
    border-radius: var(--radius-md);
    border: 2px solid var(--color-border);
}

.slider-controls {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    border: none;
    transition: background var(--transition);
}

.slider-dot.active {
    background: var(--color-gold);
}

.content-block {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4 {
    color: var(--color-gold);
    margin-top: 1.4em;
    margin-bottom: 0.6em;
}

.content-block h1:first-child,
.content-block h2:first-child,
.content-block h3:first-child {
    margin-top: 0;
}

.content-block p {
    line-height: 1.7;
    margin-bottom: 1em;
    color: var(--color-text);
}

.content-block a {
    color: var(--color-btn-gold);
    text-decoration: underline;
}

.content-block ul, .content-block ol {
    padding-left: 1.6rem;
    margin-bottom: 1em;
}

.content-block li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

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

.content-block table th,
.content-block table td {
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    text-align: left;
    font-size: 0.92rem;
}

.content-block table th {
    background: var(--color-bg-dark);
    color: var(--color-gold);
    font-weight: 700;
}

.content-block table td {
    background: var(--color-bg);
}

.content-block table tr:hover td {
    background: var(--color-bg-card2);
}

.content-block blockquote {
    border-left: 4px solid var(--color-gold);
    padding: 12px 18px;
    margin: 1.2em 0;
    background: rgba(220,189,54,0.08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--color-text-muted);
    font-style: italic;
}

.content-block img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 1em 0;
}

.content-block strong { color: var(--color-gold-light); }
.content-block em { color: var(--color-text-muted); }

.similar-games-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

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

.game-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.game-card-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 6px;
}

.game-card-desc {
    font-size: 0.84rem;
    color: var(--color-text-muted);
    flex: 1;
    margin-bottom: 12px;
    line-height: 1.5;
}

.game-card-actions {
    display: flex;
    gap: 8px;
}

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

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

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 20px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: color var(--transition);
}

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

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.author-block {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.author-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-gold);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 2px;
}

.author-position {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

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

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

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

.author-social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--color-btn-gold);
    padding: 5px 12px;
    border: 1px solid var(--color-btn-gold);
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.author-social-link:hover {
    background: var(--color-btn-gold);
    color: var(--color-text-dark);
}

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

.footer {
    background: var(--color-header-dark);
    margin-top: auto;
    padding: 40px 0 20px;
}

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

.footer-top {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col {
    flex: 1 1 180px;
    min-width: 0;
}
.footer-logo  {
    display: block;width: fit-content;
}
.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 12px;
}

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

.footer-heading {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-nav-links a {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.footer-nav-links a:hover {
    color: var(--color-gold);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 600;
    transition: background var(--transition);
}

.footer-badge:hover {
    background: rgba(255,255,255,0.15);
    color: var(--color-text);
}

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

.payment-icon {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-text);
}

.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--color-text);
    transition: background var(--transition), color var(--transition);
}

.footer-social-link:hover {
    background: var(--color-gold);
    color: var(--color-text-dark);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

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

.footer-legal {
    font-size: 0.78rem;
    color: rgba(180,130,80,0.7);
    margin-top: 8px;
    line-height: 1.5;
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    justify-content: center;
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.footer-provider img {
    height: 16px;
    width: auto;
    opacity: 0.8;
    filter: brightness(1.2);
}

.table-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 8px;
}

.data-table {
    min-width: 400px;
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.data-table th,
.data-table td {
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    text-align: left;
}

.data-table th {
    background: var(--color-bg-dark);
    color: var(--color-gold);
    font-weight: 700;
    white-space: nowrap;
}

.data-table td {
    color: var(--color-text);
}

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

.section-bg-alt {
    background: var(--color-bg-dark);
}

.breadcrumb {
    font-size: 0.84rem;
    color: var(--color-text-muted);
    padding: 10px 0;
}

.breadcrumb a {
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--color-gold); }

.breadcrumb span { margin: 0 6px; }

.badge {
    display: inline-block;
    background: var(--color-btn-red);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    vertical-align: middle;
}

.badge--gold {
    background: var(--color-btn-gold);
    color: var(--color-text-dark);
}

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

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

.info-page-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 16px;
}

.info-page-content h1 {
    margin-bottom: 20px;
}

.info-page-content h2 {
    margin-top: 28px;
}

.info-page-content p {
    line-height: 1.7;
    color: var(--color-text);
}

.m6r2k { display: none; }
.wp-block-group__inner-container { padding: 0; }
.elementor-section { position: relative; }
.e-con-inner { max-width: 100%; }
.wp-site-blocks { padding-top: 0; padding-bottom: 0; }

@keyframes spin-pulse {
    0% { box-shadow: 0 0 0 0 rgba(220,189,54,0.4); }
    70% { box-shadow: 0 0 0 12px rgba(220,189,54,0); }
    100% { box-shadow: 0 0 0 0 rgba(220,189,54,0); }
}

.btn--gold {
    animation: spin-pulse 2.5s infinite;
}

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

.badge--live {
    animation: float-badge 2s ease-in-out infinite;
    background: #c0392b;
}

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

    .hero-frame {
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
    }

    .ct-grid-2 {
        flex-direction: column;
    }

    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .screenshots-grid {
        display: none;
    }

    .screenshots-slider {
        display: block;
    }

    .slider-controls {
        display: flex;
    }

    .app-block {
        flex-direction: column;
    }

    .app-phone-frame {
        flex: none;
        width: 100%;
    }

    .author-block {
        flex-direction: column;
    }

    .footer-top {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .ct-section { padding: 32px 0; }
    .content-block { padding: 20px 16px; }
    .ct-card { padding: 16px; }
    .header-buttons .btn--lg { padding: 8px 14px; font-size: 0.88rem; }
    .similar-games-grid { gap: 12px; }
    .game-card { flex: 1 1 160px; }
    .footer-top { gap: 20px; }
    .hero { padding: 36px 0 32px; }
    .hero-cta { gap: 8px; }
    .data-table {min-width: 300px;}
    .game-card-actions {flex-wrap: wrap;}
}
@media (max-width: 480px) {
    .data-table {min-width: 250px;}
}