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

:root {
  --c-bg: #093631;
  --c-hdr: #004D37;
  --c-btn-sec: #6DDC52;
  --c-btn-pri: #FF5C00;
  --c-text: #e8f5e1;
  --c-text-muted: #a8c8b8;
  --c-text-dark: #0a1f1c;
  --c-border: rgba(109,220,82,0.18);
  --c-card: rgba(0,77,55,0.55);
  --c-card-hover: rgba(0,77,55,0.85);
  --c-overlay: rgba(9,54,49,0.82);
  --c-gold: #f5c842;
  --c-jackpot: #ff5c00;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 32px rgba(0,0,0,0.28);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.18);
  --trans: 0.22s cubic-bezier(.4,0,.2,1);
  --font: 'Ubuntu', sans-serif;
}

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

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

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

a { color: var(--c-btn-sec); text-decoration: none; transition: color var(--trans); }
a:hover { color: #8fea74; }
img { max-width: 100%; height: auto; display: block; }

.wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 18px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--font); font-weight: 700; font-size: 0.95rem;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  padding: 10px 22px; letter-spacing: 0.03em; transition: transform var(--trans), box-shadow var(--trans), filter var(--trans);
  white-space: nowrap; text-decoration: none;
}
.btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 6px 20px rgba(0,0,0,0.3); filter: brightness(1.08); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn--pri { background: var(--c-btn-pri); color: #fff; }
.btn--sec { background: var(--c-btn-sec); color: var(--c-text-dark); }
.btn--lg { padding: 14px 34px; font-size: 1.08rem; border-radius: var(--radius-md); }
.btn--sm { padding: 7px 16px; font-size: 0.86rem; }
.btn--outline { background: transparent; border: 2px solid var(--c-btn-sec); color: var(--c-btn-sec); }
.btn--outline:hover { background: var(--c-btn-sec); color: var(--c-text-dark); }

/* ========== HEADER ========== */
.site-header {
  background: var(--c-hdr);
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 18px rgba(0,0,0,0.35);
  border-bottom: 1px solid var(--c-border);
}
.header-inner {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; flex-wrap: nowrap;
}
.header-logo { flex-shrink: 0; }
.header-logo img { height: 44px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 4px; margin: 0 auto; }
.header-nav a {
  color: var(--c-text); font-size: 0.9rem; font-weight: 500; padding: 7px 11px;
  border-radius: var(--radius-sm); display: flex; align-items: center; gap: 6px;
  transition: background var(--trans), color var(--trans);
}
.header-nav a:hover { background: rgba(109,220,82,0.12); color: var(--c-btn-sec); }
.header-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.online-count {
  display: flex; align-items: center; gap: 6px; font-size: 0.8rem;
  color: var(--c-text-muted); white-space: nowrap;
}
.online-dot { width: 8px; height: 8px; background: var(--c-btn-sec); border-radius: 50%; animation: pulse-dot 1.8s infinite; }
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.35); }
}
.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 5px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--c-text); border-radius: 2px; transition: transform var(--trans), opacity var(--trans); }
.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); }

@media (max-width: 900px) {
  .header-nav {
    position: fixed; top: 69px; left: 0; right: 0; background: var(--c-hdr);
    flex-direction: column; align-items: stretch; padding: 16px;
    border-bottom: 1px solid var(--c-border); gap: 4px;
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
    padding-top: 0; padding-bottom: 0;
  }
  .header-nav.open { max-height: 500px; padding: 16px; }
  .burger { display: flex; }
  .header-inner { flex-wrap: wrap; gap: 10px; }
  .online-count { font-size: 0.75rem; }
}
@media (max-width: 480px) {
  .header-actions .btn { padding: 8px 13px; font-size: 0.83rem; }
}

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 520px; display: flex; align-items: center;
  background: url('/hero-banner.png') center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9,54,49,0.91) 40%, rgba(0,77,55,0.55) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 70px 0 60px; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(109,220,82,0.13); border: 1px solid var(--c-btn-sec);
  color: var(--c-btn-sec); font-size: 0.82rem; font-weight: 700;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 18px; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(1.7rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; color: #fff; margin-bottom: 16px; text-wrap: balance; }
.hero h1 span { color: var(--c-btn-sec); }
.hero-sub { font-size: 1.05rem; color: var(--c-text-muted); margin-bottom: 30px; max-width: 460px; line-height: 1.6; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 28px; }
.hero-trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--c-text-muted); }
.hero-trust-item svg { color: var(--c-btn-sec); width: 16px; height: 16px; }

/* ========== BREADCRUMBS ========== */
.breadcrumbs-wrap { background: rgba(0,77,55,0.35); border-bottom: 1px solid var(--c-border); }
.breadcrumbs { display: flex; align-items: center; gap: 6px; padding: 11px 0; font-size: 0.84rem; flex-wrap: wrap; }
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-btn-sec); }
.breadcrumbs span { color: var(--c-text-muted); }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; list-style: none; }
.breadcrumbs li:last-child span { color: var(--c-text); }

/* ========== SECTION HEADINGS ========== */
.section-head { text-align: center; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 700; color: #fff; margin-bottom: 10px; text-wrap: balance; }
.section-head p { color: var(--c-text-muted); max-width: 560px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c-btn-sec); margin-bottom: 8px;
}

/* ========== MAIN CONTENT ========== */
.main-content { flex: 1; padding: 48px 0; }
.content-section { margin-bottom: 56px; }
.content-section:last-child { margin-bottom: 0; }

/* ========== CASINO INFO TABLE ========== */
.info-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-md); }
.info-table {
  width: 100%; border-collapse: collapse; background: var(--c-card);
  border-radius: var(--radius-md); overflow: hidden; min-width: 480px;
}
.info-table tr { border-bottom: 1px solid var(--c-border); transition: background var(--trans); }
.info-table tr:last-child { border-bottom: none; }
.info-table tr:hover { background: var(--c-card-hover); }
.info-table td { padding: 14px 18px; font-size: 0.94rem; vertical-align: middle; }
.info-table td:first-child { color: var(--c-text-muted); font-weight: 500; width: 42%; }
.info-table td:last-child { color: var(--c-text); font-weight: 400; }
.info-table .td-icon { display: flex; align-items: center; gap: 10px; }
.info-table .td-icon svg { color: var(--c-btn-sec); width: 18px; height: 18px; flex-shrink: 0; }
.info-table .tag {
  display: inline-block; background: rgba(109,220,82,0.12); border: 1px solid rgba(109,220,82,0.25);
  color: var(--c-btn-sec); font-size: 0.78rem; padding: 2px 9px; border-radius: 50px; margin: 2px 2px 2px 0;
}

/* ========== ADVANTAGES ========== */
.adv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.adv-card {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.adv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(109,220,82,0.4); }
.adv-icon {
  width: 48px; height: 48px; background: rgba(109,220,82,0.12); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: var(--c-btn-sec);
}
.adv-icon svg { width: 26px; height: 26px; }
.adv-card h3 { font-size: 1rem; font-weight: 700; color: #fff; }
.adv-card p { font-size: 0.88rem; color: var(--c-text-muted); line-height: 1.55; }

/* ========== JACKPOTS ========== */
.jackpots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.jackpot-card {
  background: linear-gradient(145deg, rgba(0,77,55,0.8), rgba(9,54,49,0.95));
  border: 1px solid rgba(255,92,0,0.3); border-radius: var(--radius-md);
  padding: 24px 18px; text-align: center;
  transition: transform var(--trans), box-shadow var(--trans);
  position: relative; overflow: hidden;
}
.jackpot-card::before {
  content: ''; position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 120px; background: radial-gradient(circle, rgba(255,92,0,0.12), transparent 70%);
}
.jackpot-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 8px 30px rgba(255,92,0,0.2); }
.jackpot-name { font-size: 0.85rem; font-weight: 700; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.jackpot-amount { font-size: 1.7rem; font-weight: 700; color: var(--c-gold); line-height: 1; margin-bottom: 8px; }
.jackpot-label { font-size: 0.78rem; color: var(--c-btn-pri); font-weight: 600; }

/* ========== PAYMENT METHODS TABLE ========== */
.payment-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-md); }
.payment-table {
  width: 100%; border-collapse: collapse; background: var(--c-card);
  border-radius: var(--radius-md); overflow: hidden; min-width: 680px;
}
.payment-table th {
  background: var(--c-hdr); color: var(--c-text-muted); font-size: 0.82rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 13px 14px; text-align: left; border-bottom: 1px solid var(--c-border);
}
.payment-table td { padding: 13px 14px; font-size: 0.9rem; border-bottom: 1px solid var(--c-border); vertical-align: middle; }
.payment-table tr:last-child td { border-bottom: none; }
.payment-table tr:hover td { background: rgba(109,220,82,0.04); }
.payment-name { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #fff; }
.payment-logo {
  width: 38px; height: 24px; background: rgba(255,255,255,0.08);
  border-radius: 5px; display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: var(--c-text-muted); flex-shrink: 0;
}
.badge-instant { display: inline-block; background: rgba(109,220,82,0.13); color: var(--c-btn-sec); font-size: 0.75rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; }
.badge-days { display: inline-block; background: rgba(255,92,0,0.12); color: var(--c-btn-pri); font-size: 0.75rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; }

/* ========== APP BLOCK ========== */
.app-block { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.app-info-table { width: 100%; border-collapse: collapse; background: var(--c-card); border-radius: var(--radius-md); overflow: hidden; }
.app-info-table td { padding: 13px 16px; border-bottom: 1px solid var(--c-border); font-size: 0.9rem; }
.app-info-table tr:last-child td { border-bottom: none; }
.app-info-table td:first-child { color: var(--c-text-muted); font-weight: 500; width: 45%; }
.app-download { display: flex; flex-direction: column; gap: 14px; }
.app-download-title { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.app-download-desc { font-size: 0.9rem; color: var(--c-text-muted); margin-bottom: 16px; line-height: 1.55; }
.app-btns { display: flex; flex-direction: column; gap: 10px; }
.app-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: 12px 18px;
  transition: border-color var(--trans), background var(--trans), transform var(--trans);
  text-decoration: none; color: var(--c-text);
}
.app-btn:hover { border-color: var(--c-btn-sec); background: var(--c-card-hover); transform: translateX(4px); color: var(--c-text); }
.app-btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.app-btn-text small { display: block; font-size: 0.73rem; color: var(--c-text-muted); }
.app-btn-text strong { font-size: 0.98rem; font-weight: 700; color: #fff; }

@media (max-width: 700px) {
  .app-block { grid-template-columns: 1fr; }
}

/* ========== LIVE GAMES ========== */
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.game-card {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.game-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.game-thumb {
  aspect-ratio: 16/9; background: linear-gradient(135deg, rgba(0,77,55,0.9), rgba(9,54,49,0.95));
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.game-thumb-icon { font-size: 2.5rem; filter: saturate(0) opacity(0.4); }
.game-thumb-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
}
.game-card:hover .game-thumb-overlay { background: rgba(0,0,0,0.45); }
.game-play-btn {
  opacity: 0; transform: scale(0.8); transition: opacity var(--trans), transform var(--trans);
}
.game-card:hover .game-play-btn { opacity: 1; transform: scale(1); }
.game-info { padding: 14px 16px; }
.game-info h3 { font-size: 0.96rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.game-info p { font-size: 0.8rem; color: var(--c-text-muted); }
.game-card-btn { display: block; margin: 0 14px 14px; }

@media (max-width: 700px) {
  .games-grid { display: flex; overflow-x: auto; gap: 14px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
  .game-card { min-width: 200px; scroll-snap-align: start; }
}

/* ========== SLOT MACHINE ========== */
.slot-machine {
  background: linear-gradient(145deg, rgba(0,77,55,0.85), rgba(9,54,49,0.98));
  border: 2px solid rgba(255,92,0,0.3); border-radius: var(--radius-lg);
  padding: 40px 30px; text-align: center; max-width: 520px; margin: 0 auto;
  box-shadow: 0 0 60px rgba(255,92,0,0.08);
}
.slot-machine h3 { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.slot-machine p { color: var(--c-text-muted); font-size: 0.9rem; margin-bottom: 26px; }
.slot-reels {
  display: flex; gap: 10px; justify-content: center; margin-bottom: 26px;
}
.slot-reel {
  width: 80px; height: 90px; background: rgba(9,54,49,0.9);
  border: 2px solid var(--c-border); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem; position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.slot-reel.spinning { animation: reel-spin 0.15s steps(1) infinite; border-color: var(--c-btn-pri); }
@keyframes reel-spin { 0%,100%{filter:blur(0)} 50%{filter:blur(2px)} }
.slot-result { min-height: 52px; margin-bottom: 22px; }
.slot-result-win { color: var(--c-btn-sec); font-size: 1.15rem; font-weight: 700; animation: fadeInUp 0.4s ease; }
.slot-result-lose { color: var(--c-text-muted); font-size: 0.95rem; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ========== CONTENT REVIEW BLOCK ========== */
.review-content {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: 32px 36px;
  line-height: 1.75;
}
.review-content h2 { font-size: 1.45rem; font-weight: 700; color: #fff; margin: 1.5em 0 0.6em; }
.review-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--c-btn-sec); margin: 1.3em 0 0.5em; }
.review-content h4 { font-size: 1rem; font-weight: 700; color: #fff; margin: 1.2em 0 0.4em; }
.review-content p { color: var(--c-text); margin-bottom: 1em; }
.review-content a { color: var(--c-btn-sec); }
.review-content a:hover { color: #8fea74; text-decoration: underline; }
.review-content ul, .review-content ol { padding-left: 1.6em; margin-bottom: 1em; }
.review-content ul li, .review-content ol li { margin-bottom: 0.45em; color: var(--c-text); }
.review-content ul li::marker { color: var(--c-btn-sec); }
.review-content ol li::marker { color: var(--c-btn-sec); font-weight: 700; }
.review-content strong, .review-content b { color: #fff; font-weight: 700; }
.review-content em, .review-content i { color: var(--c-text-muted); font-style: italic; }
.review-content table { width: 100%; border-collapse: collapse; margin: 1.2em 0; background: rgba(0,77,55,0.3); border-radius: var(--radius-sm); overflow: hidden; }
.review-content table th { background: var(--c-hdr); padding: 10px 14px; text-align: left; font-size: 0.88rem; color: var(--c-text-muted); border-bottom: 1px solid var(--c-border); }
.review-content table td { padding: 10px 14px; border-bottom: 1px solid var(--c-border); font-size: 0.9rem; }
.review-content table tr:last-child td { border-bottom: none; }
.review-content blockquote { border-left: 3px solid var(--c-btn-sec); padding: 10px 18px; margin: 1.2em 0; background: rgba(109,220,82,0.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--c-text-muted); font-style: italic; }
.review-content hr { border: none; border-top: 1px solid var(--c-border); margin: 2em 0; }
.review-content img { border-radius: var(--radius-sm); margin: 1em 0; }

@media (max-width: 640px) {
  .review-content { padding: 20px 16px; }
}

/* ========== 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;
  transition: border-color var(--trans);
}
.faq-item.open { border-color: rgba(109,220,82,0.35); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: 1rem; font-weight: 600; color: #fff;
  text-align: left; gap: 14px;
}
.faq-question:hover { background: rgba(109,220,82,0.05); }
.faq-chevron {
  flex-shrink: 0; width: 22px; height: 22px; color: var(--c-btn-sec);
  transition: transform var(--trans);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 22px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 22px 18px; }
.faq-answer p { color: var(--c-text-muted); line-height: 1.65; font-size: 0.94rem; }

/* ========== COMMENTS ========== */
.comments-section { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.comment-list { display: flex; flex-direction: column; gap: 14px; }
.comment-card {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: 18px 20px;
}
.comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.comment-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-hdr), rgba(109,220,82,0.3));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: var(--c-btn-sec); flex-shrink: 0;
}
.comment-meta strong { display: block; font-size: 0.93rem; color: #fff; }
.comment-meta span { font-size: 0.78rem; color: var(--c-text-muted); }
.comment-stars { color: var(--c-gold); font-size: 0.85rem; margin-bottom: 8px; }
.comment-text { font-size: 0.9rem; color: var(--c-text-muted); line-height: 1.55; }

.comment-form-wrap h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 18px; }
.cform { display: flex; flex-direction: column; gap: 14px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cform-field label { display: block; font-size: 0.84rem; color: var(--c-text-muted); margin-bottom: 6px; font-weight: 500; }
.cform-field input, .cform-field textarea, .cform-field select {
  width: 100%; background: rgba(0,0,0,0.25); border: 1px solid var(--c-border);
  border-radius: var(--radius-sm); color: var(--c-text); font-family: var(--font); font-size: 0.92rem;
  padding: 10px 14px; outline: none; transition: border-color var(--trans), box-shadow var(--trans);
}
.cform-field input:focus, .cform-field textarea:focus, .cform-field select:focus {
  border-color: var(--c-btn-sec); box-shadow: 0 0 0 3px rgba(109,220,82,0.12);
}
.cform-field textarea { resize: vertical; min-height: 90px; }
.cform-field select option { background: var(--c-hdr); }
.cform-stars { display: flex; gap: 4px; margin-top: 4px; }
.cform-stars span { font-size: 1.4rem; cursor: pointer; color: #555; transition: color 0.15s; }
.cform-stars span.active { color: var(--c-gold); }
.cform-privacy { font-size: 0.8rem; color: var(--c-text-muted); }
.cform-privacy a { color: var(--c-btn-sec); }

@media (max-width: 720px) {
  .comments-section { grid-template-columns: 1fr; }
  .cform-row { grid-template-columns: 1fr; }
}

/* ========== AUTHOR ========== */
.author-card {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: 30px 30px;
}
.author-avatar {
  width: 90px; height: 90px; flex-shrink: 0; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-hdr), rgba(109,220,82,0.25));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700; color: var(--c-btn-sec);
  border: 3px solid rgba(109,220,82,0.25);
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-body { flex: 1; }
.author-name { font-size: 1.2rem; font-weight: 700; color: #fff; }
.author-title { font-size: 0.85rem; color: var(--c-btn-sec); font-weight: 600; margin-bottom: 12px; }
.author-bio { font-size: 0.91rem; color: var(--c-text-muted); line-height: 1.65; margin-bottom: 14px; }
.author-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 0.82rem; color: var(--c-text-muted); margin-bottom: 14px; }
.author-meta span { display: flex; align-items: center; gap: 5px; }
.author-social { display: flex; gap: 10px; }
.author-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(109,220,82,0.1); border: 1px solid var(--c-border);
  color: var(--c-btn-sec); transition: background var(--trans), border-color var(--trans), transform var(--trans);
}
.author-social a:hover { background: rgba(109,220,82,0.22); border-color: var(--c-btn-sec); transform: translateY(-2px); }
.author-social a svg { width: 16px; height: 16px; }

@media (max-width: 580px) {
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-meta { justify-content: center; }
  .author-social { justify-content: center; }
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--c-hdr); border-top: 1px solid var(--c-border);
  padding: 48px 0 24px; margin-top: auto;
}
.footer-top { display: grid; grid-template-columns: 260px 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand p { font-size: 0.86rem; color: var(--c-text-muted); margin-top: 12px; line-height: 1.6; }
.footer-logo img { height: 40px; width: auto; }
.footer-flag { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 0.82rem; color: var(--c-text-muted); }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--c-text-muted); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--c-text-muted); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--c-btn-sec); }
.footer-social { display: flex; gap: 8px; margin-top: 4px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--c-border);
  color: var(--c-text-muted); transition: color var(--trans), background var(--trans), border-color var(--trans);
}
.footer-social a:hover { color: var(--c-btn-sec); background: rgba(109,220,82,0.1); border-color: rgba(109,220,82,0.3); }
.footer-social a svg { width: 16px; height: 16px; }

.footer-badges { border-top: 1px solid var(--c-border); padding: 24px 0; }
.footer-badges-row { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }
.footer-badges-row h5 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--c-text-muted); margin-bottom: 8px; }
.footer-badge-group { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.footer-badge {
  background: rgba(255,255,255,0.06); border: 1px solid var(--c-border);
  border-radius: 7px; padding: 5px 12px; font-size: 0.76rem; font-weight: 700;
  color: var(--c-text-muted); display: flex; align-items: center; gap: 6px;
}
.footer-badge svg { width: 14px; height: 14px; }

.footer-bottom { border-top: 1px solid var(--c-border); padding-top: 22px; }
.footer-bottom-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-copyright { font-size: 0.78rem; color: var(--c-text-muted); line-height: 1.6; max-width: 640px; }
.footer-copyright a { color: var(--c-text-muted); }
.footer-copyright a:hover { color: var(--c-btn-sec); }
.footer-email a { font-size: 0.82rem; color: var(--c-btn-sec); }

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; }
}

/* ========== STICKY WIDGET ========== */
.sticky-widget {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
  background: var(--c-hdr); border-top: 2px solid var(--c-btn-pri);
  padding: 12px 18px;
  transform: translateY(100%); transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
}
.sticky-widget.visible { transform: translateY(0); }
.widget-promo { display: flex; align-items: center; gap: 12px; }
.widget-promo-icon { font-size: 1.4rem; }
.widget-promo-text strong { display: block; font-size: 0.95rem; font-weight: 700; color: #fff; }
.widget-promo-text span { font-size: 0.8rem; color: var(--c-text-muted); }
.widget-code {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,92,0,0.12); border: 1px dashed rgba(255,92,0,0.4);
  border-radius: var(--radius-sm); padding: 6px 14px;
}
.widget-code span { font-size: 0.85rem; color: var(--c-text-muted); }
.widget-code strong { font-size: 0.95rem; font-weight: 700; color: var(--c-btn-pri); letter-spacing: 0.06em; }
.widget-code-copy { background: none; border: none; color: var(--c-btn-sec); cursor: pointer; padding: 4px; display: flex; }
.widget-close { background: none; border: none; color: var(--c-text-muted); cursor: pointer; padding: 5px; display: flex; flex-shrink: 0; }
.widget-close:hover { color: #fff; }
.widget-close svg { width: 18px; height: 18px; }

@media (max-width: 600px) {
  .sticky-widget { flex-wrap: wrap; }
  .widget-code { display: none; }
}

/* ========== MISC / UTILITIES ========== */
.box {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: 22px;
  margin-bottom: 18px;
}
.text-center { text-align: center; }
.text-muted { color: var(--c-text-muted); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mt1 { margin-top: 8px; }
.row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.55s ease both; }

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ========== SCROLL INDICATOR ========== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 10000;
  background: linear-gradient(90deg, var(--c-btn-sec), var(--c-btn-pri));
  width: 0%; transition: width 0.1s linear;
}

/* ========== WP COMPATIBILITY ========== */
.wp-block-group { margin: 0; }
.wp-block-columns { display: flex; gap: 20px; flex-wrap: wrap; }
.wp-block-column { flex: 1; min-width: 200px; }
.entry-content { line-height: 1.7; }
.post-thumbnail { margin-bottom: 20px; }
.elementor-section { position: relative; }
.elementor-widget-container { padding: 0; }

/* ========== INFO PAGE CONTENT ========== */
.info-content { max-width: 820px; margin: 0 auto; padding: 36px 0; }
.info-content h1 { font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
.info-content h2 { font-size: 1.25rem; font-weight: 700; color: var(--c-btn-sec); margin: 1.6em 0 0.6em; }
.info-content p { color: var(--c-text-muted); margin-bottom: 1em; line-height: 1.7; }
.info-content ul, .info-content ol { padding-left: 1.6em; margin-bottom: 1em; }
.info-content li { color: var(--c-text-muted); margin-bottom: 0.5em; }
.info-content a { color: var(--c-btn-sec); }
