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

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

:root {
  --clr-nav: #3a3e51;
  --clr-bg: #3e4464;
  --clr-gold: #af8c2f;
  --clr-green: #3d8f58;
  --clr-gold-light: #c9a84c;
  --clr-green-light: #4aae6e;
  --clr-text: #e8eaf0;
  --clr-text-muted: #a8adc4;
  --clr-card: #2e3247;
  --clr-card-alt: #343858;
  --clr-border: #4a4f6a;
  --clr-white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.2);
  --transition: 0.25s ease;
  --font: 'Rubik', sans-serif;
}

html { scroll-behavior: smooth; background: var(--clr-bg); }
body { font-family: var(--font); background: var(--clr-bg); color: var(--clr-text); line-height: 1.6; font-size: 16px; overflow-x: hidden; }

a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold-light); }

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

h1, h2, h3, h4, h5, h6 { font-family: var(--font); font-weight: 700; color: var(--clr-white); line-height: 1.25; }
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.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--clr-text); }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

.wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.container--wide { max-width: 1400px; }
.main-content { flex: 1; }

.row { display: flex; flex-wrap: wrap; gap: 16px; }
.col { flex: 1; min-width: 0; }
.col-auto { flex: 0 0 auto; }

.box { background: var(--clr-card); border-radius: var(--radius-lg); padding: 24px; }
.box--alt { background: var(--clr-card-alt); }
.box--nav { background: var(--clr-nav); }

.section { padding: 56px 0; }
.section-title { text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--clr-text-muted); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-sm); font-family: var(--font); font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: background var(--transition), transform var(--transition), box-shadow var(--transition); white-space: nowrap; line-height: 1; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.btn:active { transform: translateY(0); }
.btn--green { background: var(--clr-green); color: var(--clr-white); }
.btn--green:hover { background: var(--clr-green-light); color: var(--clr-white); }
.btn--gold { background: var(--clr-gold); color: var(--clr-white); }
.btn--gold:hover { background: var(--clr-gold-light); color: var(--clr-white); }
.btn--outline { background: transparent; color: var(--clr-gold); border: 2px solid var(--clr-gold); }
.btn--outline:hover { background: var(--clr-gold); color: var(--clr-white); }
.btn--sm { padding: 8px 16px; font-size: 0.85rem; }
.btn--lg { padding: 15px 32px; font-size: 1.05rem; }
.btn--full { width: 100%; }
.btn--green svg, .btn--gold svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

.badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.badge--gold { background: rgba(175,140,47,0.2); color: var(--clr-gold-light); border: 1px solid rgba(175,140,47,0.4); }
.badge--green { background: rgba(61,143,88,0.2); color: var(--clr-green-light); border: 1px solid rgba(61,143,88,0.4); }
.badge--red { background: rgba(220,60,60,0.2); color: #f07070; border: 1px solid rgba(220,60,60,0.4); }

.divider { width: 60px; height: 3px; background: var(--clr-gold); border-radius: 2px; margin: 12px auto 28px; }

.site-header { background: var(--clr-nav); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.header-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.header-logo img { height: 60px; width: auto; }
.header-logo span { font-size: 1.15rem; font-weight: 700; color: var(--clr-white); letter-spacing: 0.02em; }
.header-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.header-nav a { color: var(--clr-text-muted); font-size: 0.88rem; padding: 6px 10px; border-radius: var(--radius-sm); display: flex; align-items: center; gap: 5px; transition: color var(--transition), background var(--transition); }
.header-nav a:hover, .header-nav a.active { color: var(--clr-white); background: rgba(255,255,255,0.07); }
.header-nav a svg { width: 15px; height: 15px; flex-shrink: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-jackpot { background: rgba(175,140,47,0.15); border: 1px solid rgba(175,140,47,0.3); border-radius: var(--radius-sm); padding: 6px 12px; text-align: center; min-width: 130px; }
.header-jackpot__label { font-size: 0.65rem; color: var(--clr-gold); text-transform: uppercase; letter-spacing: 0.06em; display: block; }
.header-jackpot__value { font-size: 1rem; font-weight: 700; color: var(--clr-gold-light); display: block; font-variant-numeric: tabular-nums; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: var(--clr-white); border-radius: 2px; transition: all 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 { display: none; background: var(--clr-nav); padding: 16px; flex-direction: column; gap: 8px; border-top: 1px solid var(--clr-border); }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--clr-text); padding: 10px 14px; border-radius: var(--radius-sm); display: flex; align-items: center; gap: 8px; }
.mobile-nav a:hover { background: rgba(255,255,255,0.07); color: var(--clr-white); }
.mobile-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }

.wp-block-spacer { display: none !important; }
.elementor-hidden { visibility: hidden; pointer-events: none; position: absolute; left: -9999px; }

.hero { padding: 60px 0 50px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(58,62,81,0.92) 0%, rgba(62,68,100,0.75) 60%, transparent 100%); z-index: 1; }
.hero-bg { position: absolute; inset: 0; background-image: url('/img/road-chicken2-hero.webp'); background-size: cover; background-position: center top; z-index: 0; }
.hero-inner { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 36px; align-items: center; }
.hero-text { flex: 1 1 320px; }
.hero-text .badge { margin-bottom: 14px; }
.hero-text h1 { margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.hero-text p { color: rgba(232,234,240,0.9); font-size: 1.05rem; margin-bottom: 24px; max-width: 520px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-tiles { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-tile { background: rgba(46,50,71,0.8); border: 1px solid var(--clr-border); border-radius: var(--radius-sm); padding: 10px 14px; min-width: 120px; flex: 1 1 110px; }
.hero-tile__label { font-size: 0.68rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.07em; display: block; margin-bottom: 3px; }
.hero-tile__value { font-size: 0.95rem; font-weight: 700; color: var(--clr-gold-light); display: block; }
.hero-image { flex: 0 1 300px; display: flex; justify-content: center; }
.hero-image img { max-width: 280px; border-radius: var(--radius-md); box-shadow: var(--shadow); }

.advantages { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.advantage-card { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 22px 18px; text-align: center; transition: transform var(--transition), border-color var(--transition); }
.advantage-card:hover { transform: translateY(-4px); border-color: var(--clr-gold); }
.advantage-card__icon { width: 48px; height: 48px; background: rgba(175,140,47,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.advantage-card__icon svg { width: 24px; height: 24px; fill: var(--clr-gold); }
.advantage-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.advantage-card p { font-size: 0.82rem; color: var(--clr-text-muted); margin: 0; line-height: 1.5; }

.casino-list { display: flex; flex-direction: column; gap: 16px; }
.casino-card { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-wrap: wrap; align-items: stretch; transition: border-color var(--transition); position: relative; }
.casino-card:hover { border-color: var(--clr-gold); }
.casino-card--top { border-color: var(--clr-gold); box-shadow: 0 0 0 2px rgba(175,140,47,0.2); }
.casino-card__rank { background: var(--clr-nav); width: 46px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; color: var(--clr-text-muted); }
.casino-card--top .casino-card__rank { background: var(--clr-gold); color: var(--clr-white); }
.casino-card__logo { width: 108px; flex-shrink: 0; background: var(--clr-card-alt); display: flex; align-items: center; justify-content: center; padding: 16px; }
.casino-card__logo img { width: 76px; height: 76px; border-radius: 10px; object-fit: cover; background: rgba(255,255,255,0.06); border: 2px solid var(--clr-border); }
.casino-card__body { flex: 1 1 240px; padding: 16px; display: flex; flex-direction: column; gap: 6px; }
.casino-card__name { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.casino-card__name h3 { font-size: 1rem; margin: 0; }
.casino-card__flag { width: 20px; height: 14px; border-radius: 2px; overflow: hidden; flex-shrink: 0; }
.casino-card__flag img { width: 100%; height: 100%; object-fit: cover; }
.casino-card__stars { display: flex; gap: 2px; }
.casino-card__stars svg { width: 15px; height: 15px; fill: var(--clr-gold); }
.casino-card__bonus { font-size: 0.88rem; color: var(--clr-gold-light); font-weight: 600; }
.casino-card__perks { display: flex; flex-wrap: wrap; gap: 5px; }
.casino-card__perk { font-size: 0.75rem; background: rgba(255,255,255,0.05); border: 1px solid var(--clr-border); border-radius: 4px; padding: 2px 8px; color: var(--clr-text-muted); }
.casino-card__meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 0.75rem; color: var(--clr-text-muted); }
.casino-card__meta span { display: flex; align-items: center; gap: 4px; }
.casino-card__meta svg { width: 13px; height: 13px; fill: var(--clr-text-muted); }
.casino-card__actions { flex-shrink: 0; padding: 16px; display: flex; flex-direction: column; gap: 8px; justify-content: center; align-items: stretch; min-width: 150px; }
.casino-card__tc { font-size: 0.65rem; color: var(--clr-text-muted); text-align: center; margin-top: 4px; }
.casino-card__tc a { color: var(--clr-text-muted); text-decoration: underline; font-size: 0.65rem; }
.load-more-wrap { text-align: center; margin-top: 28px; }
.loading-spinner { display: none; width: 28px; height: 28px; border: 3px solid var(--clr-border); border-top-color: var(--clr-gold); border-radius: 50%; animation: spin 0.7s linear infinite; margin: 0 auto 10px; }
@keyframes spin { to { transform: rotate(360deg); } }

.demo-wrap { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-md); overflow: hidden; }
.demo-header { background: var(--clr-nav); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.demo-header h3 { margin: 0; font-size: 1rem; }
.demo-iframe-wrap { position: relative; width: 100%; padding-bottom: 56.25%; }
.demo-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.demo-footer { padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; background: var(--clr-card-alt); }
.demo-footer p { margin: 0; font-size: 0.82rem; color: var(--clr-text-muted); }

.strategies-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.strategy-card { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--transition), border-color var(--transition); }
.strategy-card:hover { transform: translateY(-4px); border-color: var(--clr-gold); }
.strategy-card__img { height: 160px; overflow: hidden; background: var(--clr-card-alt); position: relative; }
.strategy-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.strategy-card:hover .strategy-card__img img { transform: scale(1.05); }
.strategy-card__tag { position: absolute; top: 10px; left: 10px; font-size: 0.7rem; font-weight: 700; background: var(--clr-gold); color: var(--clr-white); padding: 3px 8px; border-radius: 4px; text-transform: uppercase; }
.strategy-card__body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.strategy-card__body h3 { font-size: 1rem; margin: 0; }
.strategy-card__body p { font-size: 0.83rem; color: var(--clr-text-muted); margin: 0; flex: 1; line-height: 1.55; }

.content-area { line-height: 1.75; font-size: 1rem; }
.content-area h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; padding-bottom: 6px; border-bottom: 1px solid var(--clr-border); }
.content-area h3 { font-size: 1.2rem; margin: 1.5rem 0 0.6rem; color: var(--clr-gold-light); }
.content-area h4 { font-size: 1.05rem; margin: 1.2rem 0 0.5rem; }
.content-area p { margin-bottom: 1rem; }
.content-area ul, .content-area ol { margin-bottom: 1rem; padding-left: 1.6rem; }
.content-area li { margin-bottom: 0.5rem; }
.content-area strong { color: var(--clr-white); }
.content-area em { color: var(--clr-gold-light); font-style: italic; }
.content-area a { color: var(--clr-gold); text-decoration: underline; }
.content-area a:hover { color: var(--clr-gold-light); }
.content-area table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; overflow-x: auto; display: block; }
.content-area table thead tr { background: var(--clr-nav); }
.content-area table th, .content-area table td { padding: 10px 14px; text-align: left; border: 1px solid var(--clr-border); font-size: 0.9rem; }
.content-area table th { font-weight: 600; color: var(--clr-white); }
.content-area blockquote { border-left: 3px solid var(--clr-gold); padding: 12px 20px; background: var(--clr-card-alt); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.5rem 0; font-style: italic; color: var(--clr-text-muted); }
.content-area img { border-radius: var(--radius-sm); margin: 1rem 0; }
.content-area hr { border: none; border-top: 1px solid var(--clr-border); margin: 1.5rem 0; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question { padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; gap: 12px; transition: background var(--transition); }
.faq-question:hover { background: var(--clr-card-alt); }
.faq-question h3 { font-size: 0.95rem; font-weight: 600; margin: 0; flex: 1; }
.faq-toggle { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); border-radius: 50%; transition: transform var(--transition), background var(--transition); }
.faq-toggle svg { width: 14px; height: 14px; fill: var(--clr-text-muted); transition: fill var(--transition); }
.faq-item.open .faq-toggle { transform: rotate(180deg); background: var(--clr-gold); }
.faq-item.open .faq-toggle svg { fill: var(--clr-white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding var(--transition); }
.faq-answer p, .faq-answer ul { padding: 0 20px; margin: 0; }
.faq-answer p:last-child { padding-bottom: 16px; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-item.open .faq-answer p { padding-top: 0; padding-bottom: 16px; }

.author-card { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 28px; display: flex; flex-wrap: wrap; gap: 24px; }
.author-avatar { flex-shrink: 0; }
.author-avatar img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid var(--clr-gold); }
.author-info { flex: 1 1 220px; }
.author-info h3 { font-size: 1.15rem; margin-bottom: 4px; }
.author-info .author-title { font-size: 0.82rem; color: var(--clr-gold); margin-bottom: 10px; display: block; }
.author-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.author-meta span { font-size: 0.78rem; color: var(--clr-text-muted); display: flex; align-items: center; gap: 5px; }
.author-meta svg { width: 13px; height: 13px; fill: var(--clr-text-muted); }
.author-bio { font-size: 0.88rem; color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 14px; }
.author-social { display: flex; gap: 8px; flex-wrap: wrap; }
.author-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid var(--clr-border); display: flex; align-items: center; justify-content: center; transition: background var(--transition), border-color var(--transition); }
.author-social a:hover { background: var(--clr-gold); border-color: var(--clr-gold); }
.author-social svg { width: 16px; height: 16px; fill: var(--clr-text-muted); transition: fill var(--transition); }
.author-social a:hover svg { fill: var(--clr-white); }
.author-dates { font-size: 0.72rem; color: var(--clr-text-muted); margin-top: 10px; }

.site-footer { background: var(--clr-nav); margin-top: auto; padding: 40px 0 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 36px; padding-bottom: 32px; border-bottom: 1px solid var(--clr-border); }
.footer-brand { flex: 1 1 200px; }
.footer-brand-link {display: block;width: fit-content;}
.footer-brand img { height: 60px;width: auto; margin-bottom: 12px; }
.footer-brand p { font-size: 0.82rem; color: var(--clr-text-muted); line-height: 1.6; }
.footer-nav-group { flex: 1 1 140px; }
.footer-nav-group h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--clr-text-muted); margin-bottom: 12px; }
.footer-nav-group a { display: block; font-size: 0.82rem; color: var(--clr-text-muted); margin-bottom: 7px; transition: color var(--transition); }
.footer-nav-group a:hover { color: var(--clr-white); }
.footer-trust { padding: 22px 0; border-bottom: 1px solid var(--clr-border); }
.trust-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.trust-logos img { height: 28px; width: auto; opacity: 0.7; transition: opacity var(--transition); filter: grayscale(1) brightness(1.5); }
.trust-logos img:hover { opacity: 1; filter: none; }
.footer-payments { padding: 20px 0; border-bottom: 1px solid var(--clr-border); }
.payment-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.payment-logos img { height: 24px; width: auto; opacity: 0.65; filter: grayscale(1) brightness(1.5); transition: opacity var(--transition); }
.payment-logos img:hover { opacity: 1; filter: none; }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.footer-legal { font-size: 0.75rem; color: var(--clr-text-muted); line-height: 1.7; max-width: 780px; }
.footer-country { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--clr-text-muted); }
.footer-country img { width: 24px; height: 16px; border-radius: 2px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid var(--clr-border); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.footer-social a:hover { background: var(--clr-gold); border-color: var(--clr-gold); }
.footer-social svg { width: 15px; height: 15px; fill: var(--clr-text-muted); transition: fill var(--transition); }
.footer-social a:hover svg { fill: var(--clr-white); }
.age-badge { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--clr-border); font-size: 0.7rem; font-weight: 700; color: var(--clr-text-muted); }

.sticky-widget { position: fixed; right: 16px; bottom: 80px; z-index: 900; width: 260px; background: var(--clr-nav); border: 1px solid var(--clr-border); border-radius: var(--radius-md); box-shadow: var(--shadow); overflow: hidden; transition: transform var(--transition); }
.sticky-widget.hidden { transform: translateX(320px); }
.sticky-widget__header { background: var(--clr-gold); padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.sticky-widget__header h4 { font-size: 0.82rem; margin: 0; color: var(--clr-white); }
.sticky-widget__toggle { background: none; border: none; cursor: pointer; display: flex; align-items: center; padding: 0; }
.sticky-widget__toggle svg { width: 16px; height: 16px; fill: var(--clr-white); transition: transform var(--transition); }
.sticky-widget.collapsed .sticky-widget__toggle svg { transform: rotate(180deg); }
.sticky-widget__body { overflow: hidden; max-height: 400px; transition: max-height 0.35s ease; }
.sticky-widget.collapsed .sticky-widget__body { max-height: 0; }
.widget-casino { padding: 12px 14px; border-bottom: 1px solid var(--clr-border); display: flex; align-items: center; gap: 10px; }
.widget-casino:last-child { border-bottom: none; }
.widget-casino__rank { width: 22px; height: 22px; border-radius: 50%; background: var(--clr-gold); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; color: var(--clr-white); flex-shrink: 0; }
.widget-casino__info { flex: 1; min-width: 0; }
.widget-casino__info strong { display: block; font-size: 0.82rem; color: var(--clr-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.widget-casino__info span { font-size: 0.72rem; color: var(--clr-gold); }
.widget-close { position: absolute; top: 0; right: 50px; background: none; border: none; cursor: pointer; }

.back-to-top { position: fixed; right: 16px; bottom: 24px; z-index: 900; width: 42px; height: 42px; background: var(--clr-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transition: opacity var(--transition), transform var(--transition); }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); background: var(--clr-gold-light); }
.back-to-top svg { width: 18px; height: 18px; fill: var(--clr-white); }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .casino-card__actions { min-width: 120px; }
}
@media (max-width: 640px) {
  .hero { padding: 40px 0 36px; }
  .hero-image { display: none; }
  .section { padding: 40px 0; }
  .casino-card__logo { width: 80px; padding: 10px; }
  .casino-card__logo img { width: 60px; height: 60px; border-radius: 8px; }
  .casino-card__rank { width: 36px; font-size: 0.95rem; }
  .author-card { gap: 16px; }
  .sticky-widget { width: 230px; right: 8px; }
  .header-jackpot { display: none; }
  .box {padding: 20px;}
  .footer-inner {flex-direction: column;}
}
@media (max-width: 400px) {
  .footer-inner { gap: 22px; }
  .header-actions .btn { padding: 9px 14px; font-size: 0.82rem; }
  .box {padding: 16px;}
}

#wpadminbar { display: none; }
.wp-emoji { display: none; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; word-wrap: normal !important; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--clr-text-muted); }
.alignnone, .aligncenter, .alignleft, .alignright { margin: 5px 20px 20px 0; }
.aligncenter { display: block; margin: 0 auto; }
.alignright { float: right; margin: 0 0 20px 20px; }
.alignleft { float: left; margin: 0 20px 20px 0; }
.gallery-caption { display: none; }
.size-full, .size-large, .size-medium, .size-thumbnail { max-width: 100%; }