/* ===================================================
   WallyPot.com — Casino Aggregator Stylesheet
   Colors: Background #103D22, Primary #1C6B3A,
           Secondary #2FA85E, Accent #D4A030, Text #F5E8C0
   Fonts: Sora + Source Serif 4
   =================================================== */

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

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Sora', sans-serif;
  background-color: #103D22;
  color: #F5E8C0;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  
}
a { color: #D4A030; text-decoration: none; transition: color .25s; }
a:hover { color: #F5E8C0; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---------- Utilities ---------- */
.container { width: 92%; max-width: 1140px; margin: 0 auto; }
.section-title {
  font-family: 'Source Serif 4', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #D4A030;
  text-align: center;
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  opacity: .85;
  font-size: .95rem;
}
.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #D4A030, #b8872a);
  color: #103D22;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: .95rem;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,48,.35);
  color: #103D22;
}
.btn-outline {
  display: inline-block;
  padding: 10px 26px;
  border: 2px solid #D4A030;
  color: #D4A030;
  font-weight: 600;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font-size: .9rem;
  transition: background .25s, color .25s;
}
.btn-outline:hover { background: #D4A030; color: #103D22; }

/* ---------- Header ---------- */
.site-header {
  background: linear-gradient(180deg, rgba(16,61,34,.98), rgba(16,61,34,.85));
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(212,160,48,.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo svg { width: 36px; height: 36px; }
.logo-text {
  font-family: 'Source Serif 4', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #D4A030;
}
.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
  color: #F5E8C0;
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4A030;
  transition: width .3s;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a:hover { color: #D4A030; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 2.5px;
  background: #F5E8C0;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 80px 0 60px;
  background: radial-gradient(ellipse at top, #1C6B3A 0%, #103D22 70%);
}
.hero h1 {
  font-family: 'Source Serif 4', serif;
  font-size: 2.8rem;
  color: #D4A030;
  margin-bottom: .6rem;
}
.hero .subtitle {
  font-size: 1.15rem;
  opacity: .88;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.hero .mission {
  font-size: .95rem;
  opacity: .75;
  max-width: 540px;
  margin: 0 auto;
  font-style: italic;
}

/* ---------- Offer Cards ---------- */
.offers-section { padding: 60px 0; }
.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.offer-card {
  background: linear-gradient(145deg, rgba(28,107,58,.45), rgba(16,61,34,.7));
  border: 1px solid rgba(212,160,48,.18);
  border-radius: 14px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 120px 1fr auto;
  align-items: center;
  gap: 20px;
  transition: transform .25s, border-color .25s;
}
.offer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,160,48,.4);
}
.offer-number {
  font-family: 'Source Serif 4', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #D4A030;
  opacity: .7;
  width: 40px;
  text-align: center;
}
.offer-logo { width: 120px; height: 60px; object-fit: contain; }
.offer-info { min-width: 0; }
.offer-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #F5E8C0;
  margin-bottom: 4px;
}
.offer-bonus { font-size: .88rem; opacity: .8; margin-bottom: 6px; }
.offer-score {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,160,48,.15);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: .9rem;
  color: #D4A030;
}
.offer-score svg { width: 14px; height: 14px; fill: #D4A030; }
.offer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.offer-disclaimer {
  grid-column: 1 / -1;
  font-size: .75rem;
  opacity: .6;
  text-align: center;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(212,160,48,.15);
  max-width: none;
}

/* ---------- Page Content Blocks ---------- */
.page-content { padding: 60px 0 40px; }
.page-hero {
  text-align: center;
  padding: 60px 0 40px;
  background: radial-gradient(ellipse at top, #1C6B3A 0%, #103D22 70%);
}
.page-hero h1 {
  font-family: 'Source Serif 4', serif;
  font-size: 2.4rem;
  color: #D4A030;
  margin-bottom: .5rem;
}
.page-hero p {
  opacity: .8;
  max-width: 580px;
  margin: 0 auto;
  font-size: .95rem;
}
.content-block {
  background: linear-gradient(145deg, rgba(28,107,58,.3), rgba(16,61,34,.5));
  border: 1px solid rgba(212,160,48,.1);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
}
.content-block h2 {
  font-family: 'Source Serif 4', serif;
  font-size: 1.35rem;
  color: #D4A030;
  margin-bottom: .8rem;
}
.content-block h3 {
  font-size: 1.05rem;
  color: #2FA85E;
  margin: 1rem 0 .5rem;
}
.content-block p,
.content-block li {
  font-size: .92rem;
  line-height: 1.75;
  opacity: .88;
}
.content-block ul { padding-left: 20px; }
.content-block ul li { position: relative; padding-left: 16px; margin-bottom: 6px; }
.content-block ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #D4A030;
}

/* ---------- Offer Detail Page ---------- */
.offer-detail-header {
  text-align: center;
  padding: 50px 0 30px;
  background: radial-gradient(ellipse at top, #1C6B3A 0%, #103D22 70%);
}
.offer-detail-logo { width: 200px; height: 100px; object-fit: contain; margin: 0 auto 16px; }
.offer-detail-header h1 {
  font-family: 'Source Serif 4', serif;
  font-size: 2rem;
  color: #D4A030;
}
.details-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.details-table th,
.details-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: .92rem;
  border-bottom: 1px solid rgba(212,160,48,.12);
}
.details-table th {
  color: #D4A030;
  font-weight: 600;
  width: 40%;
  background: rgba(28,107,58,.25);
}
.details-table td { opacity: .88; }
.offer-detail-actions {
  text-align: center;
  margin: 28px 0 12px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #D4A030;
  font-weight: 500;
  margin-top: 20px;
}
.back-link:hover { color: #F5E8C0; }

/* ---------- Regulator Row ---------- */
.regulator-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.regulator-row a { display: inline-block; transition: opacity .25s; }
.regulator-row a:hover { opacity: .7; }
.regulator-row img { height: 50px; width: auto; object-fit: contain; }

/* ---------- Compliance Blocks ---------- */
.compliance-section {
  padding: 40px 0;
  border-top: 1px solid rgba(212,160,48,.1);
}
.compliance-section .content-block { background: rgba(16,61,34,.6); }

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: #D4A030;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(28,107,58,.3);
  border: 1px solid rgba(212,160,48,.2);
  border-radius: 8px;
  color: #F5E8C0;
  font-family: 'Sora', sans-serif;
  font-size: .92rem;
  transition: border-color .25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #D4A030;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #103D22; color: #F5E8C0; }
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #D4A030;
  margin-top: 3px;
  flex-shrink: 0;
}
.checkbox-group label { font-size: .82rem; opacity: .85; }
.form-error {
  color: #e74c3c;
  font-size: .8rem;
  margin-top: 4px;
  display: none;
}
.form-success {
  text-align: center;
  padding: 20px;
  background: rgba(47,168,94,.2);
  border: 1px solid rgba(47,168,94,.4);
  border-radius: 8px;
  color: #2FA85E;
  font-weight: 500;
  display: none;
}
.form-loader {
  text-align: center;
  padding: 20px;
  display: none;
}
.form-loader .spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(212,160,48,.2);
  border-top-color: #D4A030;
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 0 auto 10px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Footer ---------- */
.pre-footer {
  background: rgba(28,107,58,.15);
  border-top: 1px solid rgba(212,160,48,.1);
  padding: 48px 0 24px;
}
.pre-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.site-footer {
  background: linear-gradient(180deg, #0d2e19, #0a2413);
  padding: 50px 0 20px;
  border-top: 1px solid rgba(212,160,48,.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: .85rem; opacity: .7; line-height: 1.6; }
.footer-col h4 {
  font-family: 'Source Serif 4', serif;
  color: #D4A030;
  font-size: .95rem;
  margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: #F5E8C0; opacity: .7; font-size: .87rem; }
.footer-col ul a:hover { opacity: 1; color: #D4A030; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .85rem;
  opacity: .75;
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: #D4A030; flex-shrink: 0; margin-top: 3px; }
.footer-regulators {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(212,160,48,.08);
  border-bottom: 1px solid rgba(212,160,48,.08);
  margin-bottom: 24px;
}
.footer-regulators img { height: 40px; width: auto; object-fit: contain; opacity: .7; transition: opacity .25s; }
.footer-regulators img:hover { opacity: 1; }
.footer-18plus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.badge-18 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2.5px solid #D4A030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #D4A030;
  flex-shrink: 0;
}
.footer-18plus p { font-size: .82rem; opacity: .65; max-width: 500px; }
.footer-disclaimer {
  text-align: center;
  font-size: .78rem;
  opacity: .5;
  max-width: 800px;
  margin: 0 auto 18px;
  line-height: 1.6;
}
.footer-bottom {
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid rgba(212,160,48,.06);
  font-size: .8rem;
  opacity: .5;
}

/* ---------- Age Verification Modal ---------- */
.age-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,36,19,.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-modal {
  background: linear-gradient(160deg, #1C6B3A, #103D22);
  border: 1px solid rgba(212,160,48,.25);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}
.age-modal .badge-18 {
  width: 72px;
  height: 72px;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}
.age-modal h2 {
  font-family: 'Source Serif 4', serif;
  color: #D4A030;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.age-modal p { font-size: .9rem; opacity: .8; margin-bottom: 28px; }
.age-modal-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.age-modal-buttons .btn-primary { min-width: 160px; }
.age-modal-buttons .btn-outline { min-width: 120px; }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
width: 100%;
  background: linear-gradient(180deg, #0d2e19, #0a2413);
  border-top: 1px solid rgba(212,160,48,.2);
  padding: 16px 20px;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0,0,0,.4);
  box-sizing: border-box;
}
.cookie-banner p { 
  font-size: .85rem; 
  opacity: .85; 
  margin: 0; 
  flex: 1 1 100%;
  text-align: center;
  max-width: 100%;
}
@media (min-width: 768px) {
  .cookie-banner p { flex: 0 1 auto; ; text-align: left; }
}
.cookie-banner a { color: #D4A030; text-decoration: underline; }
.cookie-banner-buttons { 
  display: flex; 
  gap: 10px; 
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #0d2e19;
    padding: 80px 24px 24px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .35s ease, visibility .35s ease;
    z-index: 999;
    box-shadow: -4px 0 30px rgba(0,0,0,.5);
  }
  .main-nav.open { 
    transform: translateX(0);
    visibility: visible;
    display: block;
}
  .main-nav ul { flex-direction: column; gap: 20px; }
  .hero h1 { font-size: 2rem; }
  .hero .subtitle { font-size: 1rem; }
  .offer-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }
  .offer-logo { margin: 0 auto; }
  .offer-number { width: auto; }
  .offer-actions { flex-direction: row; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .pre-footer-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 1.8rem; }
  .offer-detail-header h1 { font-size: 1.6rem; }
  .age-modal { padding: 32px 24px; }
  .section-title { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .hero { padding: 50px 0 40px; }
  .hero h1 { font-size: 1.6rem; }
  .content-block { padding: 20px 16px; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .offer-actions { flex-direction: column; }
  .age-modal-buttons { flex-direction: column; }
  .age-modal-buttons .btn-primary,
  .age-modal-buttons .btn-outline { width: 100%; }
  .cookie-banner { flex-direction: column; text-align: center; }
}