/* WildJoke3r - Thème orange / fun */
:root {
  --primary: #ea580c;
  --primary-light: #fb923c;
  --accent: #fef3c7;
  --bg-dark: #1c1917;
  --card-bg: rgba(41, 37, 36, 0.94);
  --white: #fff;
  --border: rgba(234, 88, 12, 0.45);
  --shadow: 0 6px 26px rgba(234, 88, 12, 0.15);
  --radius: 14px;
  --transition: 0.22s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: linear-gradient(145deg, #1c1917 0%, #292524 40%, #1c1917 100%);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body.has-bg-image {
  background-color: var(--bg-dark);
  background-image: url('../img/background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(234, 88, 12, 0.08) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 85% 75% at 50% 45%, transparent 45%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
  z-index: 0;
}

.wrap { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

.site-header {
  background: linear-gradient(180deg, rgba(194, 65, 12, 0.95) 0%, rgba(28, 25, 23, 0.98) 100%);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--primary-light);
  border-radius: 0 0 12px 12px;
}

.site-header .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

.logo {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo:hover { color: var(--white); }

.nav-menu { display: flex; list-style: none; gap: 6px; flex-wrap: wrap; }
.nav-menu a {
  color: var(--white);
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  transition: background var(--transition), color var(--transition);
}
.nav-menu a:hover { background: rgba(234, 88, 12, 0.5); color: var(--accent); }

.header-disclaimer { font-size: 0.74rem; color: var(--primary-light); opacity: 0.95; }
.header-disclaimer a { color: var(--accent); text-decoration: underline; }

.menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; padding: 8px; }
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-menu { display: none; width: 100%; flex-direction: column; }
  .nav-menu.is-open { display: flex; }
}

main { padding: 30px 0 42px; }

.hero {
  text-align: center;
  padding: 40px 22px;
  margin-bottom: 38px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

.hero h1 { font-size: clamp(1.75rem, 3.6vw, 2.5rem); color: var(--primary-light); margin-bottom: 12px; }
.hero p { font-size: 1.06rem; max-width: 580px; margin: 0 auto; color: rgba(255,255,255,0.9); }

/* Casino showcase — accent block orange glow */
.casino-showcase {
  margin-bottom: 44px;
  padding: 28px 20px 24px;
  background: linear-gradient(165deg, rgba(234, 88, 12, 0.15) 0%, rgba(28, 25, 23, 0.95) 40%, rgba(251, 146, 60, 0.06) 100%);
  border: 2px solid rgba(234, 88, 12, 0.55);
  border-radius: 16px;
  box-shadow: 0 0 50px rgba(234, 88, 12, 0.2), 0 0 30px rgba(251, 146, 60, 0.08), inset 0 1px 0 rgba(255,255,255,0.06);
}

.casino-showcase .section-title {
  font-size: 1.5rem;
  color: var(--primary-light);
  text-align: center;
  margin-bottom: 22px;
  text-shadow: 0 0 24px rgba(234, 88, 12, 0.4);
}

/* Table-style operators - WildJoke3r */
.operator-table-wrap {
  overflow-x: auto;
  margin-bottom: 0;
  border: 2px solid rgba(234, 88, 12, 0.45);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(41, 37, 36, 0.98) 0%, rgba(28, 25, 23, 0.99) 100%);
  box-shadow: 0 4px 28px rgba(0,0,0,0.4), 0 0 30px rgba(234, 88, 12, 0.12);
}

.operator-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.operator-table th,
.operator-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.operator-table th {
  background: rgba(234, 88, 12, 0.28);
  color: var(--primary-light);
  font-weight: 700;
  font-size: 0.95rem;
  text-shadow: 0 0 12px rgba(234, 88, 12, 0.3);
}

.operator-table tr:hover { background: rgba(234, 88, 12, 0.12); }

.operator-table-logo { height: 42px; max-width: 110px; object-fit: contain; vertical-align: middle; }
.operator-table-name { font-weight: 700; color: var(--primary-light); font-size: 1.05rem; text-shadow: 0 0 10px rgba(251, 146, 60, 0.2); }
.operator-table-desc { font-size: 0.9rem; color: rgba(255,255,255,0.88); }
.operator-table-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--accent);
}

.operator-table-score {
  padding: 4px 10px;
  background: rgba(234, 88, 12, 0.2);
  color: var(--primary-light);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(234, 88, 12, 0.4);
}

.operator-table-cta .btn {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, #c2410c 100%);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  font-size: 0.9rem;
  transition: opacity var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 20px rgba(234, 88, 12, 0.3);
}
.operator-table-cta .btn:hover { opacity: 0.95; box-shadow: 0 0 30px rgba(234, 88, 12, 0.45); }
.casino-card-disclaimer a { color: var(--primary-light); text-decoration: underline; }

.section-block {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 26px;
  border: 2px solid var(--border);
}

.section-block h2 { font-size: 1.32rem; color: var(--primary-light); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.section-block h3 { font-size: 1.08rem; margin: 16px 0 8px; color: var(--accent); }
.section-block p, .section-block li { color: rgba(255,255,255,0.88); margin-bottom: 8px; }
.section-block ul { margin-left: 20px; }

.regulators-block { display: flex; flex-wrap: wrap; gap: 22px; align-items: flex-start; justify-content: center; padding: 24px 0; }
.regulator-item {
  flex: 1 1 200px;
  max-width: 268px;
  text-align: center;
  padding: 20px;
  background: rgba(28, 25, 23, 0.95);
  border-radius: var(--radius);
  border: 2px solid var(--border);
}
.regulator-item img { height: 54px; max-width: 114px; object-fit: contain; margin-bottom: 12px; }
.regulator-item a { color: var(--primary-light); text-decoration: none; font-weight: 600; }
.regulator-item a:hover { text-decoration: underline; }
.regulator-item p { font-size: 0.84rem; color: rgba(255,255,255,0.8); }

.faq-list { list-style: none; margin-left: 0; }
.faq-list li { margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 12px; }
.faq-list summary { cursor: pointer; font-weight: 600; color: var(--accent); }
.faq-list .faq-answer { color: rgba(255,255,255,0.86); font-size: 0.93rem; }

.warning-box {
  background: rgba(239, 68, 68, 0.14);
  border: 2px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius);
  padding: 20px;
  margin: 20px 0;
}
.warning-box strong { color: #fca5a5; }

.site-footer {
  background: linear-gradient(0deg, rgba(194, 65, 12, 0.2) 0%, rgba(28, 25, 23, 0.98) 100%);
  padding: 38px 0 22px;
  margin-top: 42px;
  border-top: 3px solid var(--primary);
  border-radius: 12px 12px 0 0;
}

.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); gap: 30px; margin-bottom: 30px; }
.footer-col h4 { font-size: 0.98rem; color: var(--primary-light); margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col a { color: rgba(255,255,255,0.86); text-decoration: none; font-size: 0.9rem; display: block; padding: 4px 0; }
.footer-col a:hover { color: var(--accent); }

.footer-regulators { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: center; padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 22px; }
.footer-regulators a { display: flex; align-items: center; gap: 8px; color: var(--primary-light); text-decoration: none; font-size: 0.9rem; }
.footer-regulators a:hover { text-decoration: underline; }
.footer-regulators img { height: 40px; width: auto; max-width: 94px; object-fit: contain; }

.footer-legal { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-align: center; line-height: 1.65; }
.footer-legal a { color: var(--primary-light); text-decoration: underline; }
.footer-legal .age-disclaimer { margin-top: 12px; font-weight: 600; color: var(--accent); }

.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.overlay[hidden] { display: none; }
.modal-box {
  background: linear-gradient(160deg, #292524 0%, #1c1917 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 30px;
  max-width: 430px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 56px rgba(0,0,0,0.5);
}
.modal-box h2 { color: var(--primary-light); margin-bottom: 16px; font-size: 1.35rem; }
.modal-box p { color: rgba(255,255,255,0.9); margin-bottom: 20px; font-size: 0.94rem; }
.modal-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.modal-buttons button { padding: 12px 24px; border-radius: 10px; font-weight: 600; cursor: pointer; font-size: 0.96rem; border: none; transition: opacity var(--transition); }
.modal-buttons .btn-confirm { background: var(--primary); color: var(--white); }
.modal-buttons .btn-deny { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.modal-buttons button:hover { opacity: 0.9; }

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(28, 25, 23, 0.98);
  border-top: 2px solid var(--primary);
  padding: 16px 20px;
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-bar[hidden] { display: none; }
.cookie-bar p { flex: 1 1 268px; font-size: 0.9rem; color: rgba(255,255,255,0.9); }
.cookie-bar a { color: var(--primary-light); text-decoration: underline; }
.cookie-bar .cookie-buttons { display: flex; gap: 10px; }
.cookie-bar button { padding: 10px 20px; border-radius: 10px; font-weight: 600; cursor: pointer; border: none; font-size: 0.9rem; }
.cookie-bar .btn-accept { background: var(--primary); color: var(--white); }
.cookie-bar .btn-refuse { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }

.page-content h1 { color: var(--primary-light); margin-bottom: 20px; font-size: 1.8rem; }
.page-content h2 { color: var(--accent); margin: 24px 0 12px; font-size: 1.24rem; }
.page-content p { margin-bottom: 12px; color: rgba(255,255,255,0.88); }
.page-content a { color: var(--primary-light); text-decoration: underline; }
.page-content a:hover { color: var(--accent); }
.contact-list { list-style: none; }
.contact-list li { margin-bottom: 12px; padding: 12px; background: rgba(255,255,255,0.06); border-radius: 10px; }
.contact-list a { text-decoration: none; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
