@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&family=Anton&display=swap');

:root {
  --c-bg: #000000;
  --c-hdr: #020C0D;
  --c-btn-primary: #059E5D;
  --c-btn-secondary: #322D37;
  --c-text: #e8eaeb;
  --c-text-muted: #8a9399;
  --c-accent: #07C171;
  --c-border: #1a2628;
  --c-card: #0b1618;
  --c-card2: #101c1f;
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Anton', 'Overpass', sans-serif;
  --font-body: 'Overpass', sans-serif;
}

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

html { background: var(--c-bg); color: var(--c-text); font-family: var(--font-body); font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body { background: var(--c-bg); min-height: 100vh; overflow-x: hidden; }

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

a { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }

.x7f2a { display: none !important; }
.qb39d { visibility: hidden; width: 0; height: 0; overflow: hidden; }

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

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

.header.box { background: var(--c-hdr); border-bottom: 1px solid var(--c-border); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(12px); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 68px; }

.header-logo { flex-shrink: 0; }
.header-logo img { height: 42px; width: auto; object-fit: contain; }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a { display: flex; align-items: center; gap: 6px; color: var(--c-text-muted); font-size: 13.5px; font-weight: 600; padding: 6px 10px; border-radius: 6px; transition: all var(--transition); white-space: nowrap; }
.header-nav a svg { flex-shrink: 0; }
.header-nav a:hover { color: var(--c-text); background: rgba(255,255,255,0.06); }

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

.online-count { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--c-text-muted); background: rgba(5,158,93,0.1); border: 1px solid rgba(5,158,93,0.25); border-radius: 20px; padding: 4px 10px; white-space: nowrap; }
.online-dot { width: 7px; height: 7px; background: var(--c-btn-primary); border-radius: 50%; animation: blink 1.8s infinite; flex-shrink: 0; }

@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 9px 20px; border-radius: 7px; font-family: var(--font-body); font-size: 14px; font-weight: 700; border: none; cursor: pointer; transition: all var(--transition); text-decoration: none; white-space: nowrap; line-height: 1; letter-spacing: .3px; }
.btn-primary { background: var(--c-btn-primary); color: #fff; }
.btn-primary:hover { background: #06b86c; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(5,158,93,0.4); }
.btn-secondary { background: var(--c-btn-secondary); color: #d4d0d9; }
.btn-secondary:hover { background: #3e3845; color: #fff; transform: translateY(-1px); }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 9px; }
.btn-xl { padding: 16px 40px; font-size: 18px; border-radius: 10px; font-family: var(--font-heading); letter-spacing: .5px; }

.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: 1px solid var(--c-border); border-radius: 6px; cursor: pointer; padding: 7px; }
.burger span { display: block; height: 2px; background: var(--c-text); 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-menu { display: none; background: var(--c-hdr); border-top: 1px solid var(--c-border); }
.mobile-menu.active { display: block; }
.mobile-menu-nav { display: flex; flex-direction: column; padding: 12px 20px 20px; gap: 2px; }
.mobile-menu-nav a { display: flex; align-items: center; gap: 10px; color: var(--c-text-muted); font-size: 14px; font-weight: 600; padding: 11px 12px; border-radius: 8px; transition: all var(--transition); }
.mobile-menu-nav a:hover { color: var(--c-text); background: rgba(255,255,255,0.05); }
.mobile-menu-btns { display: flex; gap: 8px; padding: 0 20px 20px; }
.mobile-menu-btns .btn { flex: 1; }

.hero { position: relative; min-height: 540px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('/uptown-acces-banner.png') center/cover no-repeat; z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.6) 60%, rgba(0,0,0,.2) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 640px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(5,158,93,0.15); border: 1px solid rgba(5,158,93,0.3); color: var(--c-accent); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; }
.hero-title { font-family: var(--font-heading); font-size: clamp(36px, 6vw, 64px); line-height: 1.08; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.hero-title span { color: var(--c-accent); }
.hero-subtitle { font-size: 17px; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 28px; max-width: 500px; }
.hero-bonus-tile { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 4px; background: rgba(5,158,93,0.12); border: 1.5px solid rgba(5,158,93,0.4); border-radius: var(--radius-lg); padding: 18px 28px; margin-bottom: 28px; }
.hero-bonus-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--c-text-muted); }
.hero-bonus-value { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 44px); color: var(--c-accent); letter-spacing: 1px; line-height: 1; }
.hero-bonus-sub { font-size: 13px; color: var(--c-text-muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-tc { font-size: 11px; color: var(--c-text-muted); margin-top: 14px; }
.hero-section { padding: 0 0 60px; }

.breadcrumbs { padding: 14px 0; border-bottom: 1px solid var(--c-border); margin-bottom: 36px; }
.breadcrumbs-list { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; list-style: none; }
.breadcrumbs-list li { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--c-text-muted); }
.breadcrumbs-list li:last-child { color: var(--c-text); }
.breadcrumbs-list a { color: var(--c-text-muted); transition: color var(--transition); }
.breadcrumbs-list a:hover { color: var(--c-accent); }
.breadcrumbs-sep { color: var(--c-border); font-size: 11px; }

.section { padding: 56px 0; }
.section + .section { padding-top: 0; }

.section-title { font-family: var(--font-heading); font-size: clamp(22px, 3.5vw, 32px); color: #fff; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.section-sub { font-size: 15px; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 32px; }

.toc-block { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 28px 32px; margin-bottom: 40px; }
.toc-title { font-family: var(--font-heading); font-size: 18px; color: #fff; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.toc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; }
.toc-item { display: flex; align-items: center; gap: 10px; color: var(--c-text-muted); font-size: 14px; font-weight: 600; padding: 9px 14px; border-radius: 8px; border: 1px solid var(--c-border); background: var(--c-card2); transition: all var(--transition); }
.toc-item svg { flex-shrink: 0; color: var(--c-accent); }
.toc-item:hover { color: #fff; border-color: var(--c-accent); background: rgba(5,158,93,0.06); transform: translateX(3px); }

.advantages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.adv-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 24px 20px; display: flex; flex-direction: column; gap: 12px; transition: all var(--transition); }
.adv-card:hover { border-color: rgba(5,158,93,0.4); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
.adv-icon { width: 48px; height: 48px; background: rgba(5,158,93,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--c-accent); }
.adv-title { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3; }
.adv-text { font-size: 13.5px; color: var(--c-text-muted); line-height: 1.6; }

.jackpot-block { background: linear-gradient(135deg, #071a12 0%, #0b2218 50%, #051410 100%); border: 1px solid rgba(5,158,93,0.3); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; position: relative; overflow: hidden; margin-bottom: 40px; }
.jackpot-block::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(5,158,93,0.15) 0%, transparent 65%); pointer-events: none; }
.jackpot-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--c-text-muted); margin-bottom: 10px; }
.jackpot-amount { font-family: var(--font-heading); font-size: clamp(48px, 8vw, 88px); color: var(--c-accent); letter-spacing: 2px; line-height: 1; animation: jackpotPulse 3s ease-in-out infinite; }
@keyframes jackpotPulse { 0%,100%{text-shadow:0 0 20px rgba(5,158,93,0.5);} 50%{text-shadow:0 0 50px rgba(5,158,93,0.9), 0 0 80px rgba(5,158,93,0.4);} }
.jackpot-sub { font-size: 14px; color: var(--c-text-muted); margin-top: 10px; }
.jackpot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-top: 32px; }
.jackpot-tile { background: rgba(0,0,0,0.4); border: 1px solid rgba(5,158,93,0.2); border-radius: var(--radius); padding: 16px; text-align: center; }
.jackpot-tile-name { font-size: 12px; font-weight: 700; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.jackpot-tile-val { font-family: var(--font-heading); font-size: 22px; color: #fff; }

.games-slider { position: relative; }
.games-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.game-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: all var(--transition); cursor: pointer; }
.game-card:hover { border-color: rgba(5,158,93,0.4); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.6); }
.game-card-img { position: relative; aspect-ratio: 3/4; background: var(--c-card2); overflow: hidden; }
.game-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.game-card:hover .game-card-img img { transform: scale(1.06); }
.game-badge { position: absolute; top: 8px; left: 8px; background: var(--c-btn-primary); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 8px; border-radius: 4px; }
.game-card-body { padding: 14px 12px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.game-name { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; }
.game-provider { font-size: 11px; color: var(--c-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.game-card .btn { font-size: 12px; padding: 8px 12px; width: 100%; border-radius: 6px; }

.swiper-games { display: none; }

.review-block { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 36px 40px; margin-bottom: 40px; }
.content-body { font-size: 16px; line-height: 1.75; color: var(--c-text); }
.content-body h2 { font-family: var(--font-heading); font-size: clamp(20px, 3vw, 28px); color: #fff; text-transform: uppercase; letter-spacing: .5px; margin: 32px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--c-border); }
.content-body h3 { font-size: 18px; font-weight: 700; color: #fff; margin: 24px 0 10px; }
.content-body h4 { font-size: 16px; font-weight: 700; color: var(--c-accent); margin: 18px 0 8px; }
.content-body p { margin-bottom: 16px; }
.content-body ul, .content-body ol { margin: 0 0 16px 24px; }
.content-body ul li, .content-body ol li { margin-bottom: 7px; line-height: 1.65; }
.content-body ul li::marker { color: var(--c-accent); }
.content-body ol li::marker { color: var(--c-accent); font-weight: 700; }
.content-body strong { color: #fff; font-weight: 700; }
.content-body em { color: var(--c-accent); font-style: italic; }
.content-body a { color: var(--c-accent); text-decoration: underline; }
.content-body a:hover { color: #fff; }
.content-body table { width: 100%; border-collapse: collapse; margin: 20px 0; overflow-x: auto; display: block; }
.content-body table th { background: var(--c-card2); color: #fff; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; padding: 12px 16px; text-align: left; border: 1px solid var(--c-border); }
.content-body table td { padding: 11px 16px; text-align: left; border: 1px solid var(--c-border); font-size: 14.5px; color: var(--c-text); }
.content-body table tr:hover td { background: rgba(5,158,93,0.04); }
.content-body blockquote { border-left: 3px solid var(--c-accent); padding: 14px 20px; background: rgba(5,158,93,0.06); border-radius: 0 8px 8px 0; margin: 20px 0; font-style: italic; color: var(--c-text-muted); }

.faq-block { margin-bottom: 40px; }
.faq-item { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: rgba(5,158,93,0.3); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; cursor: pointer; user-select: none; }
.faq-question-text { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.4; }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; background: var(--c-card2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--c-accent); transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(180deg); background: rgba(5,158,93,0.15); }
.faq-answer { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s; }
.faq-item.open .faq-answer { max-height: 600px; padding: 0 22px 18px; }
.faq-answer p { font-size: 14.5px; color: var(--c-text-muted); line-height: 1.7; }
.faq-answer a { color: var(--c-accent); }

.author-block { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 32px; display: flex; gap: 24px; align-items: flex-start; margin-bottom: 40px; }
.author-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(5,158,93,0.3); background: var(--c-card2); }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info { flex: 1; }
.author-name { font-family: var(--font-heading); font-size: 20px; color: #fff; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.author-role { font-size: 13px; color: var(--c-accent); font-weight: 700; margin-bottom: 10px; }
.author-bio { font-size: 14px; color: var(--c-text-muted); line-height: 1.7; margin-bottom: 14px; }
.author-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 12px; color: var(--c-text-muted); }
.author-meta span { display: flex; align-items: center; gap: 5px; }
.author-socials { display: flex; gap: 8px; margin-top: 12px; }
.author-social { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; color: var(--c-text-muted); transition: all var(--transition); }
.author-social:hover { border-color: var(--c-accent); color: var(--c-accent); background: rgba(5,158,93,0.08); }

.footer.box { background: var(--c-hdr); border-top: 1px solid var(--c-border); padding: 48px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--c-border); }
.footer-logo-wrap img { height: 38px; width: auto; margin-bottom: 14px; }
.footer-desc { font-size: 13.5px; color: var(--c-text-muted); line-height: 1.7; margin-bottom: 14px; }
.footer-flag { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--c-text-muted); margin-bottom: 14px; }
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social { display: flex; align-items: center; gap: 6px; background: var(--c-card2); border: 1px solid var(--c-border); border-radius: 7px; color: var(--c-text-muted); font-size: 12.5px; font-weight: 600; padding: 7px 12px; transition: all var(--transition); }
.footer-social:hover { border-color: var(--c-accent); color: var(--c-accent); }
.footer-nav-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--c-text-muted); margin-bottom: 14px; }
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a { font-size: 13.5px; color: var(--c-text-muted); transition: color var(--transition); }
.footer-nav-list a:hover { color: var(--c-accent); }
.footer-contact-email { font-size: 13.5px; color: var(--c-accent); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.footer-mid { padding: 32px 0; border-bottom: 1px solid var(--c-border); }
.footer-logos-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 12px; }
.footer-logos-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--c-text-muted); margin-bottom: 10px; }
.logo-badge { background: var(--c-card2); border: 1px solid var(--c-border); border-radius: 7px; padding: 7px 14px; font-size: 12px; font-weight: 700; color: var(--c-text-muted); display: flex; align-items: center; gap: 6px; transition: all var(--transition); }
.logo-badge:hover { border-color: rgba(5,158,93,0.3); color: var(--c-text); }
.logo-badge svg { flex-shrink: 0; }
.footer-bottom { padding: 20px 0; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; font-size: 12.5px; color: var(--c-text-muted); }
.footer-legal { font-size: 11.5px; color: var(--c-text-muted); line-height: 1.7; padding: 20px 0; border-top: 1px solid var(--c-border); opacity: .75; }

.sticky-widget { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: linear-gradient(90deg, #051410 0%, #071e15 100%); border-top: 2px solid var(--c-btn-primary); padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; box-shadow: 0 -8px 40px rgba(5,158,93,0.2); transform: translateY(0); transition: transform var(--transition); }
.sticky-widget-text { display: flex; flex-direction: column; }
.sticky-widget-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--c-text-muted); }
.sticky-widget-value { font-family: var(--font-heading); font-size: 20px; color: var(--c-accent); letter-spacing: .5px; line-height: 1.1; }
.sticky-widget-sub { font-size: 11px; color: var(--c-text-muted); }
.sticky-widget-close { width: 28px; height: 28px; background: none; border: 1px solid var(--c-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--c-text-muted); font-size: 14px; line-height: 1; transition: all var(--transition); flex-shrink: 0; }
.sticky-widget-close:hover { border-color: var(--c-text); color: var(--c-text); }

.wp-c { display: none; }
.ep-wr { position: relative; }
.nt-bd { background: transparent; color: inherit; }
body.admin-bar { padding-top: 0; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; position: absolute; width: 1px; word-wrap: normal; }

@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .online-count { display: none; }
  .header-actions .btn { display: none; }
  .burger { display: flex; }
  .hero { min-height: 420px; }
  .hero-bonus-tile { padding: 14px 20px; }
  .games-grid { display: none; }
  .swiper-games { display: block; }
  .swiper-games-track { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 12px; scrollbar-width: none; }
  .swiper-games-track::-webkit-scrollbar { display: none; }
  .swiper-games-track .game-card { min-width: 150px; scroll-snap-align: start; }
  .advantages-grid { grid-template-columns: 1fr 1fr; }
  .toc-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .review-block { padding: 24px 20px; }
  .author-block { flex-direction: column; }
  .toc-block { padding: 20px; }
  .jackpot-block { padding: 28px 20px; }
  .jackpot-grid { grid-template-columns: 1fr 1fr; }
  .sticky-widget { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .advantages-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .jackpot-grid { grid-template-columns: 1fr; }
}

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

.section-divider { height: 1px; background: linear-gradient(90deg, transparent 0%, var(--c-border) 30%, var(--c-border) 70%, transparent 100%); margin: 0; }

.rating-stars { display: flex; gap: 3px; color: #f5c542; font-size: 18px; }

.bonus-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(5,158,93,0.12); border: 1px solid rgba(5,158,93,0.3); color: var(--c-accent); font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: 20px; }

.d3x7k { color: var(--c-bg); font-size: 0; pointer-events: none; user-select: none; }
.r9p2m { height: 0; overflow: hidden; max-height: 0; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--c-hdr); }
::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-btn-secondary); }
