/* ============================================================
   Beef Casino FR — styles.css
   Unique dark-gold design for beef-casino-fr.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Open+Sans:wght@400;600&display=swap');

/* ── Reset & Root ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:     #0D0D0D;
  --bg-mid:      #181818;
  --bg-card:     #1E1E1E;
  --bg-input:    #141414;
  --accent-gold: #C9A84C;
  --accent-red:  #C0392B;
  --accent-glow: #FFD700;
  --text-main:   #E0E0E0;
  --text-muted:  #888888;
  --text-head:   #FFFFFF;
  --border:      #2E2E2E;
  --border-gold: #C9A84C55;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Open Sans', sans-serif;
  --transition:  0.22s ease;
  --sidebar-w:   240px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
}

a { color: var(--accent-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-glow); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* ── Progress Bar ─────────────────────────────────────────── */
.bcf-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-glow));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Layout ───────────────────────────────────────────────── */
.bcf-layout {
  display: flex;
  min-height: 100vh;
}

/* ── Sidebar ──────────────────────────────────────────────── */
.bcf-sidebar {
  width: var(--sidebar-w);
  background: var(--bg-mid);
  border-right: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  padding: 24px 0 20px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  flex-shrink: 0;
  z-index: 100;
}

.bcf-sidebar-logo {
  padding: 0 20px 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.bcf-logo-img {
  max-width: 160px;
  height: auto;
  display: block;
}

/* Nav */
.bcf-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 10px;
  flex: 1;
}

.bcf-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}

.bcf-nav-item:hover,
.bcf-nav-item.active {
  background: rgba(201, 168, 76, 0.12);
  color: var(--accent-gold);
}

.bcf-nav-icon { font-size: 16px; flex-shrink: 0; }

.bcf-sidebar-cta {
  padding: 16px 16px 8px;
}

.bcf-sidebar-badge {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bcf-badge-18 {
  background: var(--accent-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
}

.bcf-badge-text {
  font-size: 11px;
  color: var(--text-muted);
}

/* ── Top Bar (mobile) ─────────────────────────────────────── */
.bcf-topbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 56px;
  background: var(--bg-mid);
  border-bottom: 1px solid var(--border-gold);
  position: sticky;
  top: 0;
  z-index: 200;
}

.bcf-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.bcf-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.bcf-topbar-logo img { height: 28px; filter: brightness(1.1); }

/* ── Main ─────────────────────────────────────────────────── */
.bcf-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* ── Buttons ──────────────────────────────────────────────── */
.bcf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  padding: 10px 20px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}

.bcf-btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), #E8C060);
  color: #0D0D0D;
  border-color: var(--accent-gold);
}
.bcf-btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-glow), #F0CC40);
  color: #000;
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.5);
  transform: translateY(-1px);
}

.bcf-btn-outline {
  background: transparent;
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}
.bcf-btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--accent-glow);
  border-color: var(--accent-glow);
}

.bcf-btn-gold {
  background: linear-gradient(135deg, #B8860B, var(--accent-gold));
  color: #000;
  font-size: 15px;
  padding: 12px 28px;
}
.bcf-btn-gold:hover {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-glow));
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.45);
  transform: translateY(-1px);
}

.bcf-btn-lg { padding: 14px 32px; font-size: 15px; }
.bcf-btn-sm { padding: 7px 14px; font-size: 13px; }

/* ── Hero ─────────────────────────────────────────────────── */
.bcf-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.bcf-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(13,13,13,0.70) 60%,
    rgba(201,168,76,0.12) 100%
  );
  z-index: 0;
}

.bcf-hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 48px 50px;
  max-width: 760px;
}

.bcf-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 57, 43, 0.25);
  border: 1px solid var(--accent-red);
  color: #FF6B6B;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.bcf-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF4444;
  animation: blink 1.2s infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.bcf-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--text-head);
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.bcf-hero h1 span {
  color: var(--accent-gold);
}

.bcf-hero-sub {
  font-size: 16px;
  color: rgba(224,224,224,0.88);
  margin-bottom: 28px;
  max-width: 580px;
  line-height: 1.7;
}

.bcf-hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.bcf-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.bcf-stat {
  display: flex;
  flex-direction: column;
}

.bcf-stat-value {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}

.bcf-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 3px;
}

/* ── Trust Bar ────────────────────────────────────────────── */
.bcf-trust-bar {
  background: var(--bg-mid);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border);
  padding: 14px 32px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.bcf-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}

.bcf-trust-icon { font-size: 15px; }

/* ── Sections ─────────────────────────────────────────────── */
.bcf-section {
  padding: 40px 32px;
  border-bottom: 1px solid var(--border);
}

.bcf-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.bcf-section-header h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-head);
  display: flex;
  align-items: center;
  gap: 10px;
}

.bcf-section-icon { font-size: 22px; }

.bcf-section-count {
  font-size: 12px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--accent-gold);
  border: 1px solid var(--border-gold);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.bcf-section-cta {
  text-align: center;
  margin-top: 28px;
}

/* ── Game Grid ────────────────────────────────────────────── */
.bcf-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

/* ── Game Card ────────────────────────────────────────────── */
.bcf-game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.bcf-game-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.15);
}

.bcf-game-thumb {
  position: relative;
  aspect-ratio: 310 / 232;
  overflow: hidden;
  background: #111;
}

.bcf-game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bcf-game-card:hover .bcf-game-thumb img {
  transform: scale(1.06);
}

.bcf-game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.bcf-game-card:hover .bcf-game-overlay {
  opacity: 1;
}

.bcf-play-btn {
  background: linear-gradient(135deg, var(--accent-gold), #E8C060);
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: box-shadow var(--transition);
}

.bcf-play-btn:hover {
  color: #000;
  box-shadow: 0 0 14px rgba(201, 168, 76, 0.6);
}

/* Badges */
.bcf-game-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 3px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  z-index: 2;
}

.bcf-badge-live  { background: #C0392B; color: #fff; }
.bcf-badge-hot   { background: #E67E22; color: #fff; }
.bcf-badge-new   { background: #27AE60; color: #fff; }
.bcf-badge-vip   { background: linear-gradient(135deg, var(--accent-gold), #8B6914); color: #000; }

.bcf-game-info {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bcf-game-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-head);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bcf-game-provider {
  font-size: 11px;
  color: var(--text-muted);
}

/* ── Bonus Banner ─────────────────────────────────────────── */
.bcf-bonus-banner {
  background: linear-gradient(135deg, #1A1000 0%, #2A1F00 50%, #181000 100%);
  border-top: 1px solid var(--accent-gold);
  border-bottom: 1px solid var(--accent-gold);
  padding: 28px 32px;
}

.bcf-bonus-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bcf-bonus-text h3 {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.bcf-bonus-text p {
  color: var(--text-muted);
  font-size: 14px;
}

.bcf-bonus-amount {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--text-head);
  font-weight: 900;
}

.bcf-bonus-amount strong {
  color: var(--accent-gold);
}

.bcf-bonus-terms {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Providers ────────────────────────────────────────────── */
.bcf-providers-section {
  background: var(--bg-mid);
}

.bcf-providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.bcf-provider-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.bcf-provider-card:hover {
  border-color: var(--border-gold);
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.07);
}

/* ── SEO Content ──────────────────────────────────────────── */
.bcf-seo-section { background: var(--bg-deep); }

.bcf-seo-content {
  max-width: 820px;
  color: var(--text-main);
}

.bcf-seo-content h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-head);
  margin: 32px 0 14px;
  border-left: 3px solid var(--accent-gold);
  padding-left: 12px;
}

.bcf-seo-content h2:first-child { margin-top: 0; }

.bcf-seo-content h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--accent-gold);
  margin: 22px 0 10px;
}

.bcf-seo-content p {
  margin-bottom: 14px;
  line-height: 1.75;
}

/* Info table */
.bcf-info-table {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 20px 0 28px;
}

.bcf-info-row {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.bcf-info-row:last-child { border-bottom: none; }

.bcf-info-label {
  width: 45%;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
}

.bcf-info-value {
  flex: 1;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-head);
}

/* Screenshot images */
.bcf-screenshot-img {
  margin: 24px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.bcf-screenshot-real {
  width: 100%;
  height: auto;
  display: block;
}

/* Lists */
.bcf-list {
  list-style: none;
  margin: 12px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.bcf-list li {
  padding-left: 18px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
}

.bcf-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

/* VIP Tiers */
.bcf-vip-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin: 16px 0 24px;
}

.bcf-vip-tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  transition: border-color var(--transition);
}

.bcf-vip-tier:hover { border-color: var(--border-gold); }

.bcf-vip-tier.bcf-vip-featured {
  border-color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.06);
}

.bcf-vip-icon { font-size: 22px; display: block; margin-bottom: 6px; }
.bcf-vip-name {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 14px;
  margin-bottom: 5px;
}
.bcf-vip-desc { font-size: 12px; color: var(--text-muted); }

/* ── Cookie Banner ────────────────────────────────────────── */
.bcf-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #141414;
  border-top: 2px solid var(--accent-gold);
  z-index: 5000;
  padding: 16px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.7);
}

.bcf-cookie-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.bcf-cookie-inner p {
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
  min-width: 240px;
}

.bcf-cookie-link { color: var(--accent-gold); }

.bcf-cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.bcf-btn-accept {
  background: linear-gradient(135deg, var(--accent-gold), #E8C060);
  color: #000;
  border: none;
  border-radius: var(--radius-md);
  padding: 9px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: box-shadow var(--transition);
}
.bcf-btn-accept:hover { box-shadow: 0 0 12px rgba(201,168,76,0.5); }

.bcf-btn-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 9px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.bcf-btn-decline:hover { border-color: var(--text-muted); color: var(--text-main); }

/* ── Footer ───────────────────────────────────────────────── */
.bcf-footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border-gold);
  padding: 40px 32px 24px;
}

.bcf-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 28px;
  margin-bottom: 32px;
}

.bcf-footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.bcf-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.bcf-footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.bcf-footer-col a:hover { color: var(--accent-gold); }

.bcf-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.bcf-footer-logo img { filter: brightness(0.85); }

.bcf-footer-legal {
  font-size: 11px;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.6;
}

.bcf-footer-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bcf-badge-18-footer {
  background: var(--accent-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.bcf-footer-curacao {
  font-size: 12px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .bcf-sidebar {
    position: fixed;
    left: -260px;
    height: 100%;
    transition: left 0.3s ease;
    z-index: 500;
  }

  .bcf-sidebar.open { left: 0; }
  .bcf-topbar { display: flex; }

  .bcf-hero-content { padding: 40px 20px 36px; }
  .bcf-section { padding: 28px 16px; }
  .bcf-bonus-banner { padding: 22px 16px; }
  .bcf-footer { padding: 28px 16px 20px; }
  .bcf-trust-bar { padding: 12px 16px; gap: 16px; }
}

@media (max-width: 600px) {
  .bcf-game-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bcf-hero h1 { font-size: 26px; }
  .bcf-hero-stats { gap: 18px; }
  .bcf-stat-value { font-size: 22px; }
  .bcf-hero-cta-group { flex-direction: column; }
  .bcf-bonus-content { flex-direction: column; text-align: center; }
  .bcf-vip-tiers { grid-template-columns: repeat(2, 1fr); }
  .bcf-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .bcf-providers-grid { grid-template-columns: repeat(3, 1fr); }
}
