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

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

:root {
  --c-bg: #110E1B;
  --c-header: #2B2444;
  --c-btn-primary: #4DF2C1;
  --c-btn-secondary: #574C7B;
  --c-text: #E8E2F5;
  --c-text-muted: #A49DC0;
  --c-border: rgba(87,76,123,0.35);
  --c-card: #1A1630;
  --c-card-hover: #201C3A;
  --c-accent: #4DF2C1;
  --c-accent-dim: rgba(77,242,193,0.12);
  --c-plus: #4DF2C1;
  --c-minus: #F2664D;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 32px rgba(0,0,0,0.45);
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

html { background: var(--c-bg); scroll-behavior: smooth; }
body { font-family: 'Sora', ui-sans-serif, system-ui, sans-serif; background: var(--c-bg); color: var(--c-text); font-size: 16px; line-height: 1.6; min-height: 100vh; overflow-x: hidden; padding-bottom: 64px; }
body.widget-hidden { padding-bottom: 0; }

a { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; display: block; }

.wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }

.box { width: 100%; }

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: #fff; }
h1 { font-size: clamp(1.6rem,4vw,2.6rem); }
h2 { font-size: clamp(1.3rem,3vw,2rem); }
h3 { font-size: clamp(1.1rem,2.5vw,1.45rem); }

p { margin-bottom: 1rem; color: var(--c-text); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: 'Sora', ui-sans-serif, sans-serif;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  text-decoration: none !important;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); opacity: 0.93; text-decoration: none !important; }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--c-btn-primary); color: #0D0B17; padding: 11px 22px; box-shadow: 0 0 18px rgba(77,242,193,0.30); }
.btn--primary:hover { box-shadow: 0 0 30px rgba(77,242,193,0.50); color: #0D0B17; }
.btn--secondary { background: var(--c-btn-secondary); color: #fff; padding: 11px 22px; }
.btn--secondary:hover { background: #6B5E9A; color: #fff; }
.btn--sm { padding: 8px 16px; font-size: 0.83rem; }
.btn--lg { padding: 15px 32px; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn--outline { background: transparent; border: 1.5px solid var(--c-btn-primary); color: var(--c-btn-primary); padding: 10px 20px; }
.btn--outline:hover { background: var(--c-btn-primary); color: #0D0B17; }

/* ====== HEADER ====== */
.site-header { background: var(--c-header); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(77,242,193,0.10); box-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 12px; }
.header-logo { flex-shrink: 0; }
.header-logo img { height: 40px; width: auto; }
.header-logo .logo-text { font-size: 1.4rem; font-weight: 800; color: var(--c-accent); letter-spacing: -0.5px; }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a { display: flex; align-items: center; gap: 6px; color: var(--c-text); font-size: 0.88rem; font-weight: 500; padding: 7px 11px; border-radius: var(--radius-sm); transition: background var(--transition), color var(--transition); }
.header-nav a:hover { background: rgba(77,242,193,0.08); color: var(--c-accent); }
.header-nav a svg { flex-shrink: 0; }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.online-badge { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--c-text-muted); background: rgba(77,242,193,0.07); border: 1px solid rgba(77,242,193,0.15); border-radius: 20px; padding: 4px 11px; white-space: nowrap; }
.online-badge .pulse { width: 7px; height: 7px; background: var(--c-accent); border-radius: 50%; animation: pulseAnim 1.8s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulseAnim { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(77,242,193,0.5); } 50% { opacity: 0.7; box-shadow: 0 0 0 5px rgba(77,242,193,0); } }

.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 38px; cursor: pointer; border: none; background: transparent; padding: 6px; border-radius: var(--radius-sm); }
.burger span { display: block; width: 100%; height: 2px; background: var(--c-text); 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); }

/* ====== HERO ====== */
.hero-section { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; background: var(--c-bg); }
.hero-bg { position: absolute; inset: 0; background: url('/winspirit-banner.png') center center / cover no-repeat; z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,14,27,0.92) 38%, rgba(17,14,27,0.55) 70%, rgba(17,14,27,0.25) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 600px; padding: 60px 0; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(77,242,193,0.12); border: 1px solid rgba(77,242,193,0.3); color: var(--c-accent); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 18px; }
.hero-title { font-size: clamp(1.8rem,4.5vw,3rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.hero-title span { color: var(--c-accent); }
.hero-desc { font-size: 1.05rem; color: var(--c-text-muted); margin-bottom: 28px; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 10px 16px; font-size: 0.82rem; }
.hero-badge strong { color: var(--c-accent); font-size: 1.1rem; }

/* ====== BREADCRUMBS ====== */
.breadcrumbs-wrap { background: rgba(43,36,68,0.50); border-bottom: 1px solid var(--c-border); }
.breadcrumbs { display: flex; align-items: center; gap: 7px; padding: 11px 0; font-size: 0.82rem; flex-wrap: wrap; }
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-accent); }
.breadcrumbs .sep { color: var(--c-border); }
.breadcrumbs .current { color: var(--c-accent); font-weight: 500; }

/* ====== SECTIONS ====== */
.section { padding: 52px 0; scroll-margin-top: 80px; }
.section-title { margin-bottom: 28px; display: flex; align-items: center; gap: 12px; }
.section-title::before { content: ''; display: block; width: 4px; height: 26px; background: var(--c-accent); border-radius: 2px; flex-shrink: 0; }

/* ====== INFO TABLE ====== */
.info-table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--c-border); }
.info-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.info-table tr { border-bottom: 1px solid var(--c-border); transition: background var(--transition); }
.info-table tr:last-child { border-bottom: none; }
.info-table tr:hover { background: rgba(77,242,193,0.04); }
.info-table td { padding: 13px 20px; font-size: 0.9rem; vertical-align: middle; }
.info-table td:first-child { color: var(--c-text-muted); font-weight: 500; width: 42%; }
.info-table .td-inner { display: flex; align-items: center; gap: 10px; }
.info-table td:last-child { color: var(--c-text); font-weight: 500; }
.info-table .ti-icon { width: 28px; height: 28px; background: var(--c-accent-dim); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--c-accent); }

/* ====== PROS CONS ====== */
.procons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.procons-card { background: var(--c-card); border-radius: var(--radius-md); border: 1px solid var(--c-border); padding: 26px; }
.procons-card--plus { border-top: 3px solid var(--c-plus); }
.procons-card--minus { border-top: 3px solid var(--c-minus); }
.procons-header { display: flex; align-items: center; gap: 10px; font-size: 1rem; font-weight: 700; margin-bottom: 18px; }
.procons-header svg { flex-shrink: 0; }
.procons-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.procons-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; line-height: 1.5; }
.procons-list li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; background-size: 12px; background-repeat: no-repeat; background-position: center; }
.procons-card--plus .procons-list li::before { background-color: rgba(77,242,193,0.15); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%234DF2C1' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.procons-card--minus .procons-list li::before { background-color: rgba(242,102,77,0.15); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23F2664D' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

/* ====== PAYMENTS TABLE ====== */
.payments-table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--c-border); }
.payments-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.payments-table thead tr { background: var(--c-card); }
.payments-table thead th { padding: 13px 16px; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--c-text-muted); text-align: left; border-bottom: 1px solid var(--c-border); }
.payments-table tbody tr { border-bottom: 1px solid var(--c-border); transition: background var(--transition); }
.payments-table tbody tr:last-child { border-bottom: none; }
.payments-table tbody tr:hover { background: rgba(77,242,193,0.04); }
.payments-table td { padding: 12px 16px; font-size: 0.88rem; vertical-align: middle; color: var(--c-text); }
.pay-logo { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.pay-icon { width: 36px; height: 24px; background: rgba(255,255,255,0.08); border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: var(--c-text-muted); flex-shrink: 0; overflow: hidden; }

/* ====== APP BLOCK ====== */
.app-block { background: var(--c-card); border-radius: var(--radius-lg); border: 1px solid var(--c-border); padding: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.app-info-table { width: 100%; border-collapse: collapse; }
.app-info-table tr { border-bottom: 1px solid var(--c-border); }
.app-info-table tr:last-child { border-bottom: none; }
.app-info-table td { padding: 10px 0; font-size: 0.88rem; }
.app-info-table td:first-child { color: var(--c-text-muted); width: 50%; }
.app-info-table td:last-child { font-weight: 500; }
.app-dl-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.app-dl-buttons { display: flex; flex-direction: column; gap: 10px; }
.app-dl-btn { display: flex; align-items: center; gap: 12px; background: var(--c-btn-secondary); color: #fff; border-radius: var(--radius-sm); padding: 12px 18px; text-decoration: none !important; transition: background var(--transition), transform var(--transition); font-size: 0.88rem; font-weight: 500; }
.app-dl-btn:hover { background: #6B5E9A; transform: translateX(3px); color: #fff; }
.app-dl-btn svg { flex-shrink: 0; }
.app-dl-btn small { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.6); font-weight: 400; }
.app-dl-btn strong { display: block; font-size: 0.92rem; }

/* ====== BONUSES ====== */
.bonuses-grid { position: relative; }
.bonuses-grid .slider-container { overflow: hidden; }
.bonuses-grid .slider-track { display: flex; gap: 0; }
.bonuses-grid .slider-track .bonus-card { min-width: 33.333%; flex: 0 0 33.333%; padding-left: 10px; padding-right: 10px; box-sizing: border-box; }
@media (max-width:900px){ .bonuses-grid .slider-track .bonus-card { min-width:50%; flex: 0 0 50%; } }
@media (max-width:600px){ .bonuses-grid .slider-track .bonus-card { min-width: 100%; flex: 0 0 100%; } }
.bonus-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 26px; display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(77,242,193,0.12); }
.bonus-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--c-accent), #574C7B); }
.bonus-badge { display: inline-block; background: var(--c-accent-dim); color: var(--c-accent); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }
.bonus-amount { font-size: 1.7rem; font-weight: 800; color: var(--c-accent); line-height: 1; }
.bonus-title { font-size: 1rem; font-weight: 700; }
.bonus-desc { font-size: 0.85rem; color: var(--c-text-muted); flex: 1; }
.bonus-code-wrap { background: rgba(77,242,193,0.07); border: 1.5px dashed rgba(77,242,193,0.35); border-radius: var(--radius-sm); padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.bonus-code { font-family: monospace; font-size: 0.95rem; font-weight: 700; color: var(--c-accent); letter-spacing: 0.08em; }
.copy-btn { background: none; border: none; cursor: pointer; color: var(--c-text-muted); padding: 2px; border-radius: 4px; display: flex; align-items: center; transition: color var(--transition); }
.copy-btn:hover { color: var(--c-accent); }
.copy-btn.copied { color: var(--c-accent); }

/* ====== GAMES ====== */
.slider-container { position: relative; overflow: hidden; }
.games-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.games-grid.slider-track { display: flex; gap: 0; }
.games-grid.slider-track .game-card { min-width: 16.666%; flex: 0 0 16.666%; padding: 0 7px; box-sizing: border-box; background: transparent; border: none; border-radius: 0; }
.games-grid.slider-track .game-card .game-thumb { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--c-border); }
@media (max-width:1100px){ .games-grid.slider-track .game-card { min-width:33.333%; flex: 0 0 33.333%; } }
@media (max-width:600px){ .games-grid.slider-track .game-card { min-width:50%; flex: 0 0 50%; } }
.game-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); cursor: pointer; }
.game-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(77,242,193,0.15); }
.game-thumb { aspect-ratio: 3/4; background: linear-gradient(135deg, #1e1835 0%, #2b2444 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.game-overlay { position: absolute; inset: 0; background: rgba(17,14,27,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--transition); }
.game-card:hover .game-overlay { opacity: 1; }
.game-name { padding: 10px 10px 12px; font-size: 0.78rem; font-weight: 600; text-align: center; color: var(--c-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ====== DEMO FRAME ====== */
.demo-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--c-border); background: #000; position: relative; }
.demo-wrap iframe { width: 100%; display: block; min-height: 520px; border: none; }
.demo-header { background: var(--c-header); padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.demo-title { font-size: 0.92rem; font-weight: 600; }
.demo-provider { font-size: 0.78rem; color: var(--c-text-muted); }

/* ====== REVIEW CONTENT ====== */
.review-content { background: var(--c-card); border-radius: var(--radius-lg); border: 1px solid var(--c-border); padding: 36px 40px; }
.review-content h2 { font-size: 1.4rem; margin: 28px 0 14px; color: #fff; }
.review-content h3 { font-size: 1.15rem; margin: 22px 0 10px; color: #fff; }
.review-content h4 { font-size: 1rem; margin: 18px 0 8px; color: var(--c-accent); }
.review-content p { color: var(--c-text); margin-bottom: 1rem; line-height: 1.7; }
.review-content ul, .review-content ol { margin: 0 0 1rem 1.4rem; }
.review-content li { color: var(--c-text); margin-bottom: 6px; line-height: 1.6; }
.review-content table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; border-radius: var(--radius-sm); overflow: hidden; }
.review-content table th, .review-content table td { padding: 10px 14px; border: 1px solid var(--c-border); text-align: left; font-size: 0.9rem; }
.review-content table th { background: var(--c-header); color: #fff; font-weight: 600; }
.review-content table td { color: var(--c-text); }
.review-content a { color: var(--c-accent); }
.review-content blockquote { border-left: 3px solid var(--c-accent); padding: 10px 18px; background: var(--c-accent-dim); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1rem 0; color: var(--c-text); font-style: italic; }
.review-content strong { color: #fff; }
.review-content em { color: var(--c-text-muted); }
.review-content hr { border: none; border-top: 1px solid var(--c-border); margin: 2rem 0; }
.review-content img { border-radius: var(--radius-sm); margin: 1rem 0; }
.review-content code { background: rgba(77,242,193,0.1); color: var(--c-accent); padding: 2px 6px; border-radius: 4px; font-size: 0.87em; }
.review-content pre { background: var(--c-header); border-radius: var(--radius-sm); padding: 14px 18px; overflow-x: auto; margin: 1rem 0; }
.review-content pre code { background: none; padding: 0; }

/* ====== COMMENTS ====== */
.comments-section { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.comments-list { display: flex; flex-direction: column; gap: 18px; }
.comment-item { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 20px; }
.comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.comment-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--c-btn-secondary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: #fff; flex-shrink: 0; }
.comment-meta { flex: 1; }
.comment-name { font-weight: 600; font-size: 0.9rem; }
.comment-date { font-size: 0.75rem; color: var(--c-text-muted); }
.comment-stars { display: flex; gap: 2px; margin-left: auto; }
.star { color: #FFB800; font-size: 0.85rem; }
.comment-text { font-size: 0.88rem; color: var(--c-text-muted); line-height: 1.6; }

.comment-form { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 26px; }
.form-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 18px; }
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--c-text-muted); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%; background: rgba(43,36,68,0.5); border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm); color: var(--c-text); font-family: inherit;
  font-size: 0.9rem; padding: 11px 14px; transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(77,242,193,0.10); }
.form-textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.star-rating { display: flex; gap: 4px; margin-bottom: 14px; }
.star-rating input { display: none; }
.star-rating label { font-size: 1.5rem; color: var(--c-border); cursor: pointer; transition: color var(--transition); }
.star-rating input:checked ~ label, .star-rating label:hover, .star-rating label:hover ~ label { color: #FFB800; }

/* ====== AUTHOR ====== */
.author-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 32px; display: flex; align-items: flex-start; gap: 24px; }
.author-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--c-btn-secondary); overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; color: var(--c-accent); border: 3px solid var(--c-accent); }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-body { flex: 1; }
.author-name { font-size: 1.15rem; font-weight: 800; margin-bottom: 3px; }
.author-role { font-size: 0.82rem; color: var(--c-accent); font-weight: 500; margin-bottom: 10px; }
.author-bio { font-size: 0.88rem; color: var(--c-text-muted); line-height: 1.65; margin-bottom: 14px; }
.author-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.8rem; color: var(--c-text-muted); margin-bottom: 12px; }
.author-meta span { display: flex; align-items: center; gap: 5px; }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.author-link { display: inline-flex; align-items: center; gap: 6px; background: rgba(87,76,123,0.3); color: var(--c-text); border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 6px 12px; font-size: 0.8rem; font-weight: 500; transition: background var(--transition), color var(--transition), border-color var(--transition); }
.author-link:hover { background: var(--c-btn-secondary); color: #fff; border-color: var(--c-btn-secondary); }

/* ====== FAQ ====== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; }
.faq-question { padding: 18px 22px; font-weight: 600; font-size: 0.95rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: background var(--transition); user-select: none; list-style: none; }
.faq-question:hover { background: rgba(77,242,193,0.05); }
.faq-question .faq-icon { width: 22px; height: 22px; background: var(--c-accent-dim); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--c-accent); transition: transform var(--transition); }
.faq-item[open] .faq-question .faq-icon { transform: rotate(45deg); }
.faq-item[open] .faq-question { background: rgba(77,242,193,0.05); }
.faq-answer { padding: 0 22px 18px; font-size: 0.9rem; color: var(--c-text-muted); line-height: 1.7; }

/* ====== FOOTER ====== */
.site-footer { background: var(--c-header); border-top: 1px solid var(--c-border); margin-top: auto; }
.footer-main { padding: 52px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 240px 1fr 1fr 1fr; gap: 32px; }
.footer-brand { }
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 36px; }
.footer-logo .logo-text { font-size: 1.25rem; font-weight: 800; color: var(--c-accent); }
.footer-tagline { font-size: 0.83rem; color: var(--c-text-muted); margin-bottom: 16px; line-height: 1.6; }
.footer-flag { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--c-text-muted); margin-bottom: 14px; }
.flag-au { width: 28px; height: 19px; border-radius: 3px; overflow: hidden; background: #00008B; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: #fff; font-weight: 700; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.social-btn { width: 34px; height: 34px; background: rgba(255,255,255,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--c-text-muted); transition: background var(--transition), color var(--transition); border: 1px solid var(--c-border); flex-shrink: 0; }
.social-btn:hover { background: var(--c-btn-secondary); color: #fff; border-color: var(--c-btn-secondary); }
.footer-col-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-text-muted); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--c-text-muted); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--c-accent); }
.footer-email a { color: var(--c-text-muted); font-size: 0.88rem; }
.footer-email a:hover { color: var(--c-accent); }
.footer-logos-row { border-top: 1px solid var(--c-border); padding: 22px 0; }
.logos-section-title { font-size: 0.72rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px; }
.logos-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.logo-badge { background: rgba(255,255,255,0.06); border: 1px solid var(--c-border); border-radius: 7px; padding: 6px 12px; font-size: 0.75rem; font-weight: 600; color: var(--c-text-muted); display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.logo-badge svg { flex-shrink: 0; }
.footer-bottom { border-top: 1px solid var(--c-border); padding: 18px 0; }
.footer-bottom-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-legal { font-size: 0.76rem; color: var(--c-text-muted); line-height: 1.65; max-width: 700px; }
.footer-legal a { color: var(--c-text-muted); text-decoration: underline; }
.footer-copyright { font-size: 0.78rem; color: var(--c-text-muted); white-space: nowrap; }

/* ====== STICKY WIDGET ====== */
.sticky-widget { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; display: flex; align-items: center; justify-content: center; background: linear-gradient(90deg, #2B2444 0%, #1A1630 50%, #2B2444 100%); border-top: 1px solid rgba(77,242,193,0.25); padding: 12px 20px; gap: 14px; box-shadow: 0 -4px 30px rgba(0,0,0,0.5); }
.widget-promo { display: flex; align-items: center; gap: 10px; }
.widget-promo-text { font-size: 0.85rem; color: var(--c-text); }
.widget-promo-text strong { color: var(--c-accent); }
.widget-code { display: flex; align-items: center; gap: 6px; background: var(--c-accent-dim); border: 1.5px dashed rgba(77,242,193,0.4); border-radius: var(--radius-sm); padding: 6px 12px; }
.widget-code span { font-family: monospace; font-weight: 700; font-size: 0.9rem; color: var(--c-accent); letter-spacing: 0.06em; }
.widget-close { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--c-text-muted); cursor: pointer; font-size: 1.2rem; line-height: 1; padding: 4px; transition: color var(--transition); }
.widget-close:hover { color: var(--c-accent); }

/* ====== SLIDERS ====== */
.slider-container { position: relative; overflow: hidden; }
.slider-track { display: flex; transition: transform 0.38s cubic-bezier(0.4,0,0.2,1); }
.slider-nav { display: none; align-items: center; justify-content: center; gap: 10px; margin-top: 16px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-border); transition: background var(--transition), width var(--transition); cursor: pointer; }
.slider-dot.active { background: var(--c-accent); width: 20px; border-radius: 4px; }
.slider-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--c-card); border: 1px solid var(--c-border); color: var(--c-text); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition), border-color var(--transition); }
.slider-btn:hover { background: var(--c-btn-secondary); border-color: var(--c-btn-secondary); }

/* ====== MISC UTILITY ====== */
.text-accent { color: var(--c-accent); }
.text-muted { color: var(--c-text-muted); }
.mt-0 { margin-top: 0; }
.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; }
.mb-3 { margin-bottom: 24px; }
.text-center { text-align: center; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }

.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ====== WP COMPAT ELEMENTS (uniqualizer) ====== */
.wp-block-spacer { height: 1px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.wp-caption { max-width: 100%; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 16px; }
.alignright { float: right; margin-left: 16px; }
.wp-block-group { }
.has-text-color { }
.has-background { }
.entry-content { }
.post-thumbnail { }
.site-branding { }
.nav-links { }
.elementor-section { }
.elementor-widget-wrap { }
.elementor-widget-container { }
.e-container { }

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .app-block { grid-template-columns: 1fr; }
  .procons-grid { grid-template-columns: 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .comments-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-content { padding: 22px 18px; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-links { justify-content: center; }
  .author-meta { justify-content: center; }
}
@media (max-width: 768px) {
  html, body { overflow-x: hidden; max-width: 100vw; }
  *, *::before, *::after { min-width: 0; }
  .header-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: rgba(17,14,27,0.98); flex-direction: column; align-items: flex-start; padding: 24px 20px; gap: 6px; z-index: 999; overflow-y: auto; border-top: 1px solid var(--c-border); }
  .header-nav.active { display: flex; }
  .header-nav a { width: 100%; font-size: 1rem; padding: 12px 14px; border-radius: var(--radius-sm); }
  .header-nav .nav-auth-mobile { display: flex !important; flex-direction: column; gap: 8px; width: 100%; margin-top: 12px; }
  .header-actions .btn--secondary,
  .header-actions .btn--primary { display: none; }
  .burger { display: flex; }
  .online-badge .badge-text { display: none; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-widget { padding: 10px 16px; gap: 10px; flex-wrap: wrap; justify-content: center; }
  .slider-nav { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .demo-wrap iframe { min-height: 300px; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-wrap iframe { min-height: 260px; }
}
.nav-auth-mobile { display: none; }
