/* ============================================================
   westvirginiasocialcasino.com — Casino Click West Virginia Review
   Design: Premium Review — Deep Forest + Emerald + Gold
   Fonts: Merriweather (headings) + Nunito (body)
   ============================================================ */

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

:root {
  --forest: #0c1a12;
  --forest-deep: #081008;
  --forest-mid: #142a1c;
  --forest-card: #1a3224;
  --forest-card2: #1f3c2a;
  --emerald: #17b87e;
  --emerald-deep: #0f8c5e;
  --emerald-light: #2cd494;
  --emerald-pale: #e6faf3;
  --gold: #e8a418;
  --gold-hover: #c8880e;
  --gold-light: #f0bc38;
  --btn-violet: #5c4ee8;
  --btn-violet-hover: #4a3ec0;
  --white: #ffffff;
  --cream: #f4f7f5;
  --cream-dark: #e4ebe8;
  --ink: #0c1a12;
  --ink-mid: #263830;
  --ink-light: #5a7468;
  --border: #c4d4cc;
  --shadow: 0 2px 12px rgba(12,26,18,0.14);
  --shadow-lg: 0 6px 28px rgba(12,26,18,0.22);
  --radius: 8px;
  --radius-lg: 14px;
  --ff-head: 'Merriweather', Georgia, serif;
  --ff-body: 'Nunito', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); background: var(--cream); color: var(--ink); line-height: 1.78; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
a { color: var(--btn-violet); text-decoration: none; }
a:hover { color: var(--emerald-deep); }
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* --- Header --- */
.site-header {
  background: var(--forest-deep);
  border-bottom: 3px solid var(--emerald);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; max-width: 1080px; margin: 0 auto; gap: 16px;
}
.site-logo img { height: 42px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.site-nav a {
  color: rgba(255,255,255,0.82); font-family: var(--ff-body);
  font-size: 0.84rem; font-weight: 600; padding: 6px 11px;
  border-radius: 5px; letter-spacing: 0.02em; transition: background 0.2s, color 0.2s;
}
.site-nav a:hover, .site-nav a.active {
  background: rgba(23,184,126,0.16); color: var(--emerald-light);
}
.btn-cta-nav {
  background: var(--gold) !important; color: var(--forest-deep) !important;
  font-weight: 800 !important; padding: 8px 18px !important;
  border-radius: 6px !important; white-space: nowrap;
}
.btn-cta-nav:hover { background: var(--gold-light) !important; }

/* --- Offer Banner Strip --- */
.offer-banner-strip {
  background: var(--forest-deep); padding: 14px 20px;
  text-align: center; border-bottom: 2px solid var(--emerald);
}
.offer-banner-strip a {
  display: inline-block; max-width: 340px; width: 100%;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.55);
  transition: transform 0.2s, box-shadow 0.2s;
}
.offer-banner-strip a:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.65); }
.offer-banner-strip img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); }

/* --- Hero --- */
.page-hero {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-mid) 55%, #1a3820 100%);
  padding: 52px 20px 44px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(23,184,126,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--ff-head); font-size: clamp(1.65rem, 3.4vw, 2.55rem);
  font-weight: 900; color: var(--white); line-height: 1.15;
  margin-bottom: 14px; position: relative;
}
.page-hero h1 span { color: var(--emerald-light); }
.page-hero .subtitle {
  color: rgba(255,255,255,0.72); font-size: 1rem;
  max-width: 580px; margin: 0 auto 22px; font-style: italic;
}
.rating-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(23,184,126,0.4);
  border-radius: 50px; padding: 8px 20px; color: var(--emerald-light);
  font-size: 0.9rem; font-weight: 600; font-family: var(--ff-body);
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; }

/* --- Breadcrumb --- */
.breadcrumb {
  background: var(--cream-dark); padding: 10px 0;
  font-size: 0.8rem; color: var(--ink-light); border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--btn-violet); }
.breadcrumb span { margin: 0 6px; }

/* --- Layout --- */
.page-layout {
  display: grid; grid-template-columns: 1fr 296px;
  gap: 36px; padding: 40px 20px; max-width: 1080px; margin: 0 auto; align-items: start;
}
.page-content { min-width: 0; }
.sidebar { position: sticky; top: 76px; display: flex; flex-direction: column; gap: 22px; }

/* --- Typography --- */
.page-content h2 {
  font-family: var(--ff-head); font-size: 1.4rem; font-weight: 700;
  color: var(--forest); margin: 40px 0 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--emerald); line-height: 1.25;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-family: var(--ff-head); font-size: 1.08rem; font-weight: 700;
  color: var(--forest-mid); margin: 26px 0 10px; line-height: 1.3;
}
.page-content p { margin-bottom: 17px; color: var(--ink-mid); font-size: 0.96rem; }
.page-content ul, .page-content ol { margin: 0 0 17px 22px; color: var(--ink-mid); font-size: 0.96rem; }
.page-content li { margin-bottom: 7px; }
.page-content strong { color: var(--ink); }

/* --- Verdict Box --- */
.verdict-box {
  background: var(--white); border: 2px solid var(--emerald);
  border-radius: var(--radius-lg); padding: 26px; margin-bottom: 30px; box-shadow: var(--shadow);
}
.verdict-title {
  font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700;
  color: var(--forest); margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
}
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: 18px; }
.verdict-item .label { color: var(--ink-light); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.verdict-item .value { color: var(--ink); font-weight: 700; font-size: 0.9rem; }
.verdict-rating { display: flex; align-items: center; gap: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.rating-number { font-family: var(--ff-head); font-size: 2.4rem; font-weight: 900; color: var(--forest); line-height: 1; }
.rating-stars-lg { font-size: 1.4rem; color: var(--gold); }
.rating-label { font-size: 0.79rem; color: var(--ink-light); }

/* --- Offer Cards --- */
.offer-cards { display: flex; flex-direction: column; gap: 14px; margin: 22px 0; }
.offer-card {
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border);
  padding: 20px 22px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center;
  transition: box-shadow 0.2s; position: relative;
}
.offer-card:hover { box-shadow: var(--shadow-lg); }
.offer-card.featured { border-color: var(--emerald); border-width: 2px; }
.offer-badge {
  position: absolute; top: -11px; left: 18px; background: var(--emerald);
  color: var(--forest-deep); font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 12px; border-radius: 50px;
}
.offer-card-label { font-size: 0.73rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-light); margin-bottom: 4px; font-weight: 700; }
.offer-amount { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700; color: var(--forest); line-height: 1.25; margin-bottom: 5px; }
.offer-note { font-size: 0.8rem; color: var(--ink-light); font-style: italic; }

/* --- Buttons --- */
.btn {
  display: inline-block; padding: 11px 24px; border-radius: 6px;
  font-weight: 700; font-family: var(--ff-body); font-size: 0.88rem;
  text-align: center; white-space: nowrap; cursor: pointer;
  transition: all 0.2s; letter-spacing: 0.02em;
}
.btn-primary { background: var(--emerald); color: var(--forest-deep); border: 2px solid var(--emerald); }
.btn-primary:hover { background: var(--emerald-light); border-color: var(--emerald-light); color: var(--forest-deep); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(23,184,126,0.38); }
.btn-secondary { background: transparent; color: var(--forest); border: 2px solid var(--forest-mid); }
.btn-secondary:hover { background: var(--forest); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--forest-deep); border: 2px solid var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--forest-deep); }
.btn-full { width: 100%; display: block; text-align: center; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0; }

/* --- Info Box --- */
.info-box {
  background: var(--white); border-left: 4px solid var(--emerald);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; margin: 22px 0; box-shadow: var(--shadow);
}
.info-box.alt { border-left-color: var(--gold); }
.info-box-title { font-family: var(--ff-head); font-size: 0.95rem; font-weight: 700; color: var(--forest); margin-bottom: 7px; }

/* --- Click Club Box --- */
.click-club-box {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  border-radius: var(--radius-lg); padding: 28px; margin: 28px 0; color: var(--white);
}
.click-club-box h3 { font-family: var(--ff-head); font-size: 1.2rem; color: var(--emerald-light); margin-bottom: 14px; }
.click-club-steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; margin: 18px 0; }
.click-step { text-align: center; }
.click-step-icon { font-size: 2rem; margin-bottom: 8px; }
.click-step-title { font-weight: 700; font-size: 0.9rem; color: var(--emerald-light); margin-bottom: 5px; }
.click-step-desc { font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* --- Coins Table --- */
.coins-table {
  width: 100%; border-collapse: collapse; margin: 22px 0;
  font-size: 0.89rem; background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.coins-table th { background: var(--forest); color: var(--white); padding: 13px 16px; text-align: left; font-family: var(--ff-head); font-weight: 700; font-size: 0.88rem; }
.coins-table td { padding: 11px 16px; border-bottom: 1px solid var(--cream-dark); color: var(--ink-mid); vertical-align: top; }
.coins-table tr:last-child td { border-bottom: none; }
.coins-table tr:nth-child(even) td { background: var(--cream); }

/* --- Games Grid --- */
.games-categories { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 22px 0; }
.game-cat {
  background: var(--white); border-radius: var(--radius-lg); padding: 18px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  border-top: 3px solid var(--emerald);
}
.game-cat h4 { font-family: var(--ff-head); font-size: 0.95rem; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.game-cat p { font-size: 0.83rem; color: var(--ink-light); margin: 0; }
.game-cat .game-examples { font-size: 0.8rem; color: var(--ink-mid); font-style: italic; margin-top: 6px; }

/* --- Pros Cons --- */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 22px 0; }
.pros-box, .cons-box { background: var(--white); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow); }
.pros-box { border-top: 3px solid #1f8c50; }
.cons-box { border-top: 3px solid #a03030; }
.pros-box h3, .cons-box h3 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 12px; font-family: var(--ff-body); font-weight: 700; }
.pros-box h3 { color: #1f8c50; }
.cons-box h3 { color: #a03030; }
.pros-box ul, .cons-box ul { list-style: none; margin: 0; padding: 0; }
.pros-box li::before { content: '✓  '; color: #1f8c50; font-weight: 700; }
.cons-box li::before { content: '✗  '; color: #a03030; font-weight: 700; }
.pros-box li, .cons-box li { font-size: 0.865rem; color: var(--ink-mid); margin-bottom: 8px; padding-left: 4px; }

/* --- Steps --- */
.steps { counter-reset: step; margin: 22px 0; }
.step { display: flex; gap: 18px; margin-bottom: 22px; align-items: flex-start; }
.step-num {
  counter-increment: step; min-width: 40px; height: 40px;
  background: var(--emerald); color: var(--forest-deep); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: 1.05rem; font-weight: 900; flex-shrink: 0;
}
.step-body h3 { margin-top: 0; font-size: 1rem; color: var(--forest); font-family: var(--ff-head); }

/* --- FAQ --- */
.faq-section { background: var(--white); border-radius: var(--radius-lg); padding: 28px; margin: 38px 0; box-shadow: var(--shadow); }
.faq-section h2 { border-bottom: none; margin-top: 0; margin-bottom: 20px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 14px 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-q { font-family: var(--ff-head); font-size: 0.97rem; font-weight: 700; color: var(--forest); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--emerald); flex-shrink: 0; font-weight: 300; font-family: sans-serif; }
.faq-a { font-size: 0.88rem; color: var(--ink-mid); margin-top: 9px; line-height: 1.72; }

/* --- Related Pages --- */
.related-pages { background: var(--forest); border-radius: var(--radius-lg); padding: 26px; margin: 38px 0; }
.related-pages h3 { color: var(--emerald-light); font-family: var(--ff-head); font-size: 0.95rem; margin: 0 0 14px; font-weight: 700; }
.related-pages a { display: block; color: rgba(255,255,255,0.78); font-size: 0.86rem; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.08); transition: color 0.2s; }
.related-pages a:hover { color: var(--emerald-light); }
.related-pages a:last-child { border-bottom: none; }
.related-pages a::before { content: '→  '; color: var(--emerald); }

/* --- Content Images --- */
.content-img { margin: 26px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.content-img img { border-radius: 0; width: 100%; }
.content-img figcaption { background: var(--cream-dark); padding: 8px 15px; font-size: 0.77rem; color: var(--ink-light); font-style: italic; text-align: center; }

/* --- CTA Strip --- */
.cta-strip {
  background: linear-gradient(135deg, var(--forest-deep), var(--forest-mid));
  color: var(--white); padding: 30px 26px; border-radius: var(--radius-lg); margin: 30px 0; text-align: center;
}
.cta-strip h3 { font-family: var(--ff-head); font-size: 1.25rem; color: var(--emerald-light); margin: 0 0 8px; }
.cta-strip p { color: rgba(255,255,255,0.78); font-size: 0.88rem; margin-bottom: 18px; }

/* --- Sidebar --- */
.sidebar-widget { background: var(--white); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.sidebar-widget h3 { font-family: var(--ff-head); font-size: 0.93rem; font-weight: 700; color: var(--forest); margin: 0 0 14px; padding-bottom: 9px; border-bottom: 2px solid var(--emerald); }
.sidebar-widget p { font-size: 0.855rem; margin-bottom: 12px; }
.sidebar-widget .mini-offer { background: var(--cream); border-radius: var(--radius); padding: 11px 13px; margin-bottom: 9px; font-size: 0.83rem; }
.sidebar-widget .mini-offer strong { display: block; color: var(--forest); font-size: 0.88rem; margin-bottom: 2px; }
.quick-facts { list-style: none; padding: 0; margin: 0; }
.quick-facts li { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--cream-dark); font-size: 0.82rem; }
.quick-facts li:last-child { border-bottom: none; }
.quick-facts .fact-label { color: var(--ink-light); }
.quick-facts .fact-val { color: var(--ink); font-weight: 700; }
.quick-facts a { font-size: 0.83rem; }

/* --- Disclaimer --- */
.disclaimer-banner { background: #eaf4ee; border: 1px solid #9ac8b0; border-radius: var(--radius); padding: 13px 17px; font-size: 0.79rem; color: #0c1a12; margin: 22px 0; line-height: 1.65; }

/* --- Footer --- */
.site-footer { background: var(--forest-deep); color: rgba(255,255,255,0.72); padding: 46px 20px 26px; margin-top: 58px; }
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 34px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 26px; }
.footer-col h4 { color: var(--emerald-light); font-family: var(--ff-head); font-size: 0.88rem; margin-bottom: 13px; font-weight: 700; }
.footer-col a { display: block; color: rgba(255,255,255,0.62); font-size: 0.82rem; margin-bottom: 7px; transition: color 0.2s; }
.footer-col a:hover { color: var(--emerald-light); }
.footer-disclaimer { font-size: 0.74rem; color: rgba(255,255,255,0.48); line-height: 1.7; margin-bottom: 16px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom .copyright { font-size: 0.76rem; color: rgba(255,255,255,0.42); }
.age-badge { background: rgba(23,184,126,0.18); border: 1px solid var(--emerald); border-radius: 50%; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; font-size: 0.74rem; font-weight: 700; color: var(--emerald-light); flex-shrink: 0; }

/* --- Responsive --- */
@media (max-width: 860px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .verdict-grid { grid-template-columns: 1fr; gap: 10px; }
  .pros-cons { grid-template-columns: 1fr; }
  .games-categories { grid-template-columns: 1fr; }
  .click-club-steps { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .site-nav { gap: 3px; }
  .site-nav a { font-size: 0.72rem; padding: 5px 7px; }
  .footer-top { grid-template-columns: 1fr; gap: 22px; }
  .offer-card { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 34px 20px 28px; }
}
