/* =============================================
   UKCasa.pro — Main Stylesheet
   Deep black / emerald with gold accents
   Fonts: Bebas Neue (headings) + Nunito (body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
  --bg:           #080c0a;
  --bg-card:      #0d1410;
  --bg-alt:       #0a1009;
  --bg-stripe:    #0c110e;
  --gold:         #d4a843;
  --gold-light:   #f0c96e;
  --gold-dark:    #a8832a;
  --emerald:      #10b981;
  --emerald-dim:  rgba(16,185,129,0.12);
  --gold-dim:     rgba(212,168,67,0.12);
  --cream:        #edeae2;
  --muted:        #6b7a6e;
  --border:       rgba(212, 168, 67, 0.18);
  --border-em:    rgba(16, 185, 129, 0.18);
  --footer-bg:    #050805;
  --warn-bg:      #0e1a10;
  --radius-sm:    4px;
  --radius-md:    10px;
  --radius-lg:    18px;
  --font-head:    'Bebas Neue', sans-serif;
  --font-body:    'Nunito', sans-serif;
  --transition:   0.2s ease;
  --max-width:    1160px;
  --shadow-card:  0 10px 60px rgba(0,0,0,0.7);
  --shadow-gold:  0 0 30px rgba(212,168,67,0.2);
  --gradient-gold: linear-gradient(135deg, #d4a843 0%, #f0c96e 50%, #a8832a 100%);
  --gradient-em:   linear-gradient(135deg, #059669 0%, #10b981 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1,h2,h3 { font-family: var(--font-head); letter-spacing: 1px; line-height: 1.05; }
h4,h5 { font-family: var(--font-body); line-height: 1.3; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* =============================================
   AGE BAR
   ============================================= */
.age-bar {
  background: var(--warn-bg);
  border-bottom: 1px solid var(--border);
  padding: 8px 24px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.age-bar a { color: var(--emerald); text-decoration: underline; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8,12,10,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  padding: 0 24px;
}
.site-logo {
  font-family: var(--font-head);
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212,168,67,0.4);
}
.site-logo span { color: var(--emerald); }

.site-nav { display: flex; align-items: center; gap: 0; }
.site-nav a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--gold-light);
  background: var(--gold-dim);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* =============================================
   HERO — full-screen centered
   ============================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1607944024060-0450380ddd33?w=1600&q=80&fit=crop');
  background-size: cover;
  background-position: center;
  filter: brightness(0.38) saturate(0.7);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(8,12,10,0.55) 0%,
    rgba(8,12,10,0.35) 50%,
    rgba(8,12,10,0.75) 100%);
}
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 100%, rgba(16,185,129,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 30% 25% at 80% 10%, rgba(212,168,67,0.08) 0%, transparent 60%);
}

.hero-left {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  justify-content: center;
}
.hero-line {
  width: 36px; height: 2px;
  background: var(--gradient-gold);
}
.hero-eyebrow span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 0.95;
}
.hero h1 .gold { color: var(--gold); }
.hero h1 .em { color: var(--emerald); }

.hero-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 38px;
  line-height: 1.75;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.btn-gold {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: var(--gradient-gold);
  color: #080c0a;
  font-family: var(--font-head);
  font-size: 17px;
  letter-spacing: 1.5px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-gold:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.hero-badge {
  display: inline-flex;
  align-items: center; gap: 12px;
  background: rgba(8,12,10,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  margin-top: 12px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { box-shadow: 0 0 0 7px rgba(16,185,129,0); }
}
.hero-badge-text { font-size: 13px; font-weight: 700; color: var(--cream); }
.hero-badge-sub  { font-size: 11px; color: var(--muted); }

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: var(--bg-stripe);
  border-top: 1px solid var(--border-em);
  border-bottom: 1px solid var(--border-em);
  padding: 18px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.trust-item-icon { font-size: 22px; }

/* =============================================
   FEATURED CASINO (comparateur)
   ============================================= */
.casino-section { background: var(--bg-alt); padding: 80px 0; }

.casino-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold), var(--shadow-card);
  position: relative;
}
.casino-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.casino-top {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 36px;
  border-bottom: 1px solid var(--border);
}

.casino-logo-box {
  flex-shrink: 0;
  width: 180px;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: center;
}
.casino-logo-box img {
  max-width: 140px; max-height: 70px; object-fit: contain;
}

.casino-info { flex: 1; }
.casino-label {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 12px;
}
.casino-bonus-main {
  font-family: var(--font-head);
  font-size: 36px;
  color: var(--gold-light);
  line-height: 1; margin-bottom: 6px;
}
.casino-bonus-sub {
  font-size: 15px; font-weight: 600;
  color: var(--emerald);
}

.casino-meta {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 24px; border-left: 1px solid var(--border);
}
.casino-score {
  font-family: var(--font-head);
  font-size: 52px;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.casino-score-label { font-size: 11px; color: var(--muted); margin-top: 2px; }
.casino-votes { font-size: 11px; color: var(--muted); }

.casino-pay-wrap {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 0 24px; border-left: 1px solid var(--border);
}
.casino-pay-wrap img { max-width: 120px; filter: brightness(0.85); }
.casino-pay-more { font-size: 11px; color: var(--muted); }

.casino-cta-wrap {
  flex-shrink: 0;
}
.casino-cta-wrap a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gradient-gold);
  color: #080c0a;
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 1.5px;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}
.casino-cta-wrap a:hover {
  opacity: 0.85; transform: translateY(-2px); box-shadow: var(--shadow-gold);
}

/* bottom features grid */
.casino-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}
.casino-feat {
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 12px;
}
.casino-feat:last-child { border-right: none; }
.feat-icon { font-size: 22px; flex-shrink: 0; }
.feat-title {
  font-size: 13px; font-weight: 700;
  color: var(--cream); margin-bottom: 3px;
}
.feat-desc { font-size: 12px; color: var(--muted); line-height: 1.55; }

/* =============================================
   HOW WE RATE — horizontal steps
   ============================================= */
.how-section { background: var(--bg); padding: 80px 0; }

.sec-header { margin-bottom: 52px; }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.sec-eyebrow::before {
  content: ''; width: 20px; height: 1px;
  background: var(--gradient-gold);
}
.sec-title {
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--cream); margin-bottom: 10px;
}
.sec-sub { font-size: 14px; color: var(--muted); max-width: 460px; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step {
  background: var(--bg-card);
  padding: 32px 28px;
  position: relative;
  transition: background var(--transition);
}
.step:hover { background: #0f1812; }
.step-num {
  font-family: var(--font-head);
  font-size: 72px;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  position: absolute; top: 16px; right: 20px;
}
.step-icon { font-size: 32px; margin-bottom: 16px; }
.step h3 {
  font-family: var(--font-head);
  font-size: 22px; letter-spacing: 1px;
  color: var(--gold-light); margin-bottom: 10px;
}
.step p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* =============================================
   SLOTS GALLERY — image strip with text overlay
   ============================================= */
.gallery-section { background: var(--bg-alt); padding: 80px 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-item {
  position: relative; overflow: hidden;
}
.gallery-item.big { grid-row: 1 / 3; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.7);
  transition: transform 0.5s ease, filter 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.65) saturate(0.85);
}
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 16px 14px;
  background: linear-gradient(0deg, rgba(8,12,10,0.9) 0%, transparent 100%);
}
.gallery-caption h4 {
  font-size: 13px; font-weight: 700;
  color: var(--cream); margin-bottom: 2px;
}
.gallery-caption p { font-size: 11px; color: var(--muted); }

.gallery-cta {
  margin-top: 32px;
  display: flex; align-items: center; gap: 20px;
}
.gallery-cta p { font-size: 14px; color: var(--muted); }

/* =============================================
   TESTIMONIALS — 2-col layout
   ============================================= */
.reviews-section { background: var(--bg); padding: 80px 0; }

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.reviews-list { display: flex; flex-direction: column; gap: 16px; }

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.review-card:hover {
  border-color: var(--gold);
  transform: translateX(5px);
}
.review-q {
  position: absolute; top: 6px; right: 14px;
  font-family: var(--font-head);
  font-size: 56px; color: var(--gold); opacity: 0.1;
  line-height: 1;
}
.review-top {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--border);
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--cream); }
.review-stars { display: flex; gap: 2px; margin-top: 2px; }
.star { width: 12px; height: 12px; fill: var(--gold); color: var(--gold); }
.review-text { font-size: 13px; color: var(--muted); line-height: 1.72; font-style: italic; }

/* numbers panel */
.reviews-numbers { display: flex; flex-direction: column; gap: 16px; }

.num-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex; align-items: center; gap: 18px;
  transition: border-color var(--transition);
}
.num-card:hover { border-color: var(--gold); }
.num-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.num-value {
  font-family: var(--font-head);
  font-size: 34px;
  color: var(--gold-light);
  line-height: 1; margin-bottom: 2px;
}
.num-label { font-size: 12px; color: var(--muted); }

/* =============================================
   DISCLAIMER
   ============================================= */
.disclaimer-section {
  background: var(--bg-stripe);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.disclaimer-row {
  display: flex; gap: 20px; align-items: flex-start;
}
.disclaimer-icon { flex-shrink: 0; width: 42px; }
.disclaimer-body h3 {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 700;
  color: var(--cream); margin-bottom: 10px;
}
.disclaimer-body p {
  font-size: 12.5px; color: var(--muted);
  line-height: 1.72; margin-bottom: 8px;
}
.disclaimer-body p:last-child { margin-bottom: 0; }
.disclaimer-body a { color: var(--emerald); }

/* =============================================
   RESPONSIBLE LOGOS
   ============================================= */
.resp-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.resp-logos {
  display: flex; align-items: center;
  justify-content: center;
  gap: 30px; flex-wrap: wrap;
}
.resp-logos a { opacity: 0.5; transition: opacity var(--transition); }
.resp-logos a:hover { opacity: 1; }
.resp-logos img { height: 34px; width: auto; object-fit: contain; }
.resp-logos .age-badge { height: 34px; opacity: 0.55; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--footer-bg); }

.footer-top {
  padding: 52px 0 36px;
  border-bottom: 1px solid var(--border);
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
}
.fc-brand .site-logo { display: inline-block; margin-bottom: 14px; }
.fc-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 270px; }

.fc-nav h4, .fc-contact h4 {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 16px;
}
.fc-nav ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fc-nav ul li a {
  font-size: 13px; color: var(--muted);
  transition: color var(--transition);
}
.fc-nav ul li a:hover { color: var(--gold-light); }
.fc-contact address { font-style: normal; display: flex; flex-direction: column; gap: 8px; }
.fc-contact address p { font-size: 13px; color: var(--muted); }
.fc-contact address strong { color: var(--cream); }

.footer-bottom {
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-mini-links { display: flex; gap: 16px; }
.footer-mini-links a {
  font-size: 12px; color: var(--muted);
  transition: color var(--transition);
}
.footer-mini-links a:hover { color: var(--gold-light); }

/* =============================================
   LEGAL SECTIONS
   ============================================= */
.legal-section {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.legal-section + .legal-section {
  border-top: none;
  padding-top: 0;
}
.legal-header {
  text-align: center;
  margin-bottom: 40px;
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-light);
  margin: 28px 0 10px;
}
.legal-content h3:first-child {
  margin-top: 0;
}
.legal-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content a {
  color: var(--emerald);
  text-decoration: underline;
  transition: color var(--transition);
}
.legal-content a:hover {
  color: var(--gold-light);
}
.legal-content strong {
  color: var(--cream);
}

/* =============================================
   SCROLL TOP
   ============================================= */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 42px; height: 42px;
  background: var(--gradient-gold);
  color: #080c0a;
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .casino-top { flex-wrap: wrap; gap: 20px; }
  .casino-meta, .casino-pay-wrap { border-left: none; padding: 0; }
  .casino-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-left { padding: 60px 24px; }
  .reviews-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .gallery-item.big { grid-row: auto; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 66px; left: 0; right: 0;
    background: rgba(8,12,10,0.98);
    padding: 16px; gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: flex; }
  .steps-row { grid-template-columns: 1fr; gap: 2px; }
  .casino-top { flex-direction: column; }
  .casino-logo-box { width: 100%; }
  .casino-cta-wrap { width: 100%; }
  .casino-cta-wrap a { width: 100%; justify-content: center; }
  .casino-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .trust-items { gap: 20px; }
}
