/* ============================================================
   oklahomasweepscasino.com — Free Spin Casino Oklahoma Review
   Design: Editorial / Premium Review — Terracotta + Teal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;600;700;900&family=Open+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* --- Variables --- */
:root {
  --terra: #6e2410;
  --terra-deep: #4a1608;
  --terra-mid: #8c3018;
  --teal: #1a6672;
  --teal-hover: #125059;
  --teal-light: #2a8a99;
  --amber: #d4883a;
  --amber-light: #f0b06a;
  --cream: #f6ede4;
  --cream-dark: #eaddd0;
  --white: #ffffff;
  --text-dark: #1c1c1c;
  --text-mid: #3c3c3c;
  --text-light: #6a6a6a;
  --border: #ddd0c4;
  --shadow: 0 2px 12px rgba(110,36,16,0.09);
  --shadow-lg: 0 6px 28px rgba(110,36,16,0.14);
  --radius: 8px;
  --radius-lg: 14px;
  --ff-head: 'Roboto Slab', Georgia, serif;
  --ff-body: 'Open Sans', Arial, sans-serif;
}

/* --- Reset & Base --- */
*, *::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(--text-dark); line-height: 1.75; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--terra-mid); }
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

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

/* --- Offer Banner Strip --- */
.offer-banner-strip {
  background: var(--terra-deep);
  padding: 12px 20px;
  text-align: center;
  border-bottom: 2px solid var(--amber);
}
.offer-banner-strip a {
  display: inline-block;
  max-width: 360px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.offer-banner-strip a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}
.offer-banner-strip img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); }

/* --- Hero --- */
.page-hero {
  background: linear-gradient(135deg, var(--terra-deep) 0%, var(--terra) 60%, var(--teal) 100%);
  padding: 52px 20px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4883a' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
}
.page-hero .subtitle {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 20px;
  font-style: italic;
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(212,136,58,0.5);
  border-radius: 50px;
  padding: 8px 20px;
  color: var(--amber-light);
  font-size: 0.9rem;
  font-weight: 600;
}
.stars { color: var(--amber); letter-spacing: 2px; font-size: 1rem; }

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

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

/* --- Typography --- */
.page-content h2 {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terra-deep);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--amber);
  line-height: 1.3;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--terra);
  margin: 28px 0 10px;
  line-height: 1.35;
}
.page-content p { margin-bottom: 18px; color: var(--text-mid); font-size: 0.97rem; }
.page-content ul, .page-content ol { margin: 0 0 18px 22px; color: var(--text-mid); font-size: 0.97rem; }
.page-content li { margin-bottom: 7px; }
.page-content strong { color: var(--text-dark); }

/* --- Verdict Box --- */
.verdict-box {
  background: var(--white);
  border: 2px solid var(--amber);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}
.verdict-box .verdict-title {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--terra-deep);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.verdict-item { font-size: 0.88rem; }
.verdict-item .label { color: var(--text-light); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.verdict-item .value { color: var(--text-dark); font-weight: 600; font-size: 0.93rem; }
.verdict-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.rating-number { font-family: var(--ff-head); font-size: 2.4rem; font-weight: 900; color: var(--terra-deep); line-height: 1; }
.rating-stars-lg { font-size: 1.4rem; color: var(--amber); }
.rating-label { font-size: 0.8rem; color: var(--text-light); }

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

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

/* --- Info Boxes --- */
.info-box {
  background: var(--white);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
  box-shadow: var(--shadow);
}
.info-box.amber { border-left-color: var(--amber); }
.info-box-title { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; color: var(--terra-deep); margin-bottom: 8px; }

/* --- Coins Table --- */
.coins-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.coins-table th { background: var(--terra-deep); color: var(--white); padding: 14px 18px; text-align: left; font-family: var(--ff-head); font-weight: 600; font-size: 0.9rem; }
.coins-table td { padding: 12px 18px; border-bottom: 1px solid var(--cream-dark); color: var(--text-mid); vertical-align: top; }
.coins-table tr:last-child td { border-bottom: none; }
.coins-table tr:nth-child(even) td { background: var(--cream); }

/* --- Pros Cons --- */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.pros-box, .cons-box { background: var(--white); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow); }
.pros-box { border-top: 3px solid #2d8a4e; }
.cons-box { border-top: 3px solid #c0392b; }
.pros-box h3, .cons-box h3 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; font-family: var(--ff-body); font-weight: 700; }
.pros-box h3 { color: #2d8a4e; }
.cons-box h3 { color: #c0392b; }
.pros-box ul, .cons-box ul { list-style: none; margin: 0; padding: 0; }
.pros-box li::before { content: '✓  '; color: #2d8a4e; font-weight: 700; }
.cons-box li::before { content: '✗  '; color: #c0392b; font-weight: 700; }
.pros-box li, .cons-box li { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 9px; padding-left: 4px; }

/* --- Steps --- */
.steps { counter-reset: step; margin: 24px 0; }
.step { display: flex; gap: 20px; margin-bottom: 24px; align-items: flex-start; }
.step-num {
  counter-increment: step;
  min-width: 42px; height: 42px;
  background: var(--terra-deep);
  color: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700;
  flex-shrink: 0;
}
.step-body h3 { margin-top: 0; font-size: 1rem; color: var(--terra-deep); }

/* --- FAQ --- */
.faq-section { background: var(--white); border-radius: var(--radius-lg); padding: 30px 28px; margin: 40px 0; box-shadow: var(--shadow); }
.faq-section h2 { border-bottom: none; margin-top: 0; margin-bottom: 22px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 16px 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-q { font-family: var(--ff-head); font-size: 1rem; font-weight: 600; color: var(--terra-deep); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--amber); flex-shrink: 0; font-family: sans-serif; font-weight: 300; }
.faq-a { font-size: 0.9rem; color: var(--text-mid); margin-top: 10px; line-height: 1.7; }

/* --- Related Pages --- */
.related-pages { background: var(--terra-deep); border-radius: var(--radius-lg); padding: 28px; margin: 40px 0; }
.related-pages h3 { color: var(--amber-light); font-family: var(--ff-head); font-size: 1rem; margin: 0 0 16px; font-weight: 600; }
.related-pages a { display: block; color: rgba(255,255,255,0.8); font-size: 0.88rem; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.08); transition: color 0.2s; }
.related-pages a:hover { color: var(--amber-light); }
.related-pages a:last-child { border-bottom: none; }
.related-pages a::before { content: '→  '; color: var(--amber); }

/* --- Content Images --- */
.content-img { margin: 28px 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: 9px 16px; font-size: 0.78rem; color: var(--text-light); font-style: italic; text-align: center; }

/* --- Highlight Strip --- */
.highlight-strip {
  background: linear-gradient(135deg, var(--terra-deep), var(--terra));
  color: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  text-align: center;
}
.highlight-strip h3 { font-family: var(--ff-head); font-size: 1.3rem; color: var(--amber-light); margin: 0 0 8px; }
.highlight-strip p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 20px; }

/* --- Sidebar Widgets --- */
.sidebar-widget { background: var(--white); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.sidebar-widget h3 { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; color: var(--terra-deep); margin: 0 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--amber); }
.sidebar-widget p { font-size: 0.875rem; margin-bottom: 14px; }
.sidebar-widget .mini-offer { background: var(--cream); border-radius: var(--radius); padding: 12px 14px; margin-bottom: 10px; font-size: 0.85rem; }
.sidebar-widget .mini-offer strong { display: block; color: var(--terra-deep); font-size: 0.9rem; margin-bottom: 3px; }
.quick-facts { list-style: none; padding: 0; margin: 0; }
.quick-facts li { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--cream-dark); font-size: 0.83rem; }
.quick-facts li:last-child { border-bottom: none; }
.quick-facts .fact-label { color: var(--text-light); }
.quick-facts .fact-val { color: var(--text-dark); font-weight: 600; }

/* --- Disclaimer --- */
.disclaimer-banner { background: #fff4e6; border: 1px solid var(--amber-light); border-radius: var(--radius); padding: 14px 18px; font-size: 0.8rem; color: #5a3500; margin: 24px 0; line-height: 1.6; }

/* --- Footer --- */
.site-footer { background: var(--terra-deep); color: rgba(255,255,255,0.75); padding: 48px 20px 28px; margin-top: 60px; }
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 28px; }
.footer-col h4 { color: var(--amber-light); font-family: var(--ff-head); font-size: 0.95rem; margin-bottom: 14px; font-weight: 600; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); font-size: 0.83rem; margin-bottom: 7px; transition: color 0.2s; }
.footer-col a:hover { color: var(--amber-light); }
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom .copyright { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.age-badge { background: rgba(212,136,58,0.2); border: 1px solid var(--amber); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: var(--amber-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; }
}
@media (max-width: 600px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .site-nav { gap: 4px; }
  .site-nav a { font-size: 0.75rem; padding: 5px 8px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .offer-card { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 36px 20px 30px; }
  .offer-banner-strip a { max-width: 100%; }
}
