/* ==========================================================================
   CasinoID.co — Premium Dark Gold Theme
   ========================================================================== */

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

:root {
  --gold:          #D4AF37;
  --gold-light:    #F2D16B;
  --gold-dark:     #A8860C;
  --gold-glow:     rgba(212,175,55,0.30);
  --gold-glow-lg:  rgba(212,175,55,0.55);

  --bg:            #0C0A06;
  --bg-2:          #130F07;
  --bg-3:          #1A1509;
  --bg-card:       #1E1A0E;
  --bg-card-hover: #252010;

  --white:         #FFFFFF;
  --off-white:     #F0E8CC;
  --muted:         #9A8A5A;

  --border:        rgba(212,175,55,0.18);
  --border-md:     rgba(212,175,55,0.40);
  --border-hi:     rgba(212,175,55,0.75);

  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --ease:       all 0.32s cubic-bezier(0.25,0.8,0.25,1);

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
}

/* ─── Reset / Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body.dark-theme {
  background: var(--bg);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--white); margin: 0; }
p   { margin: 0; }
p+p { margin-top: .75rem; }
ul  { list-style: none; padding: 0; margin: 0; }
a   { text-decoration: none; transition: var(--ease); }

/* ─── Utility ──────────────────────────────────────────────────────────── */
.text-accent  { color: var(--gold) !important; }
.bg-darker    { background: var(--bg-2); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto;
}

/* gold line under headings */
.section-title + .section-desc,
.section-title + p {
  margin-top: 1rem;
}

/* ─── Buttons ──────────────────────────────────────────────────────────── */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #0C0A06;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .78rem 2.2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 4px 22px var(--gold-glow);
  position: relative;
  overflow: hidden;
}
.btn-accent::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.btn-accent:hover::after { transform: translateX(100%); }
.btn-accent:hover {
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  color: #0C0A06;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px var(--gold-glow-lg);
}

.btn-outline-accent {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-weight: 700;
  font-family: var(--font-body);
  padding: .6rem 1.6rem;
  border-radius: 50px;
  transition: var(--ease);
}
.btn-outline-accent:hover {
  background: var(--gold);
  color: #0C0A06;
  box-shadow: 0 6px 20px var(--gold-glow);
}

.shadow-glow        { box-shadow: 0 4px 24px var(--gold-glow); }
.shadow-glow:hover  { box-shadow: 0 10px 36px var(--gold-glow-lg); }
.btn-compact        { border-radius: var(--radius-sm); }

/* ─── Navbar ───────────────────────────────────────────────────────────── */
.premium-nav {
  background: rgba(12,10,6,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-md);
  transition: var(--ease);
}
.navbar-brand img { max-height: 42px; }
.navbar-nav .nav-link {
  color: var(--off-white);
  font-weight: 500;
  margin: 0 6px;
  font-size: .95rem;
  position: relative;
  padding-bottom: 4px;
}
.navbar-nav .nav-link::after {
  content:'';
  position:absolute;
  bottom:0; left:50%;
  width:0; height:2px;
  background: var(--gold);
  transition: var(--ease);
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover { color: var(--gold); }
.navbar-nav .nav-link:hover::after { width: 100%; }
.nav-cta { margin-left: .5rem; }
.navbar-toggler { border-color: var(--border-md); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212,175,55,1%29' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── Hero ─────────────────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  padding-top: 90px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* animated gradient orbs */
.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-section::before {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,.14) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-section::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,.08) 0%, transparent 70%);
  bottom: -100px; right: 5%;
  animation: orbFloat 12s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0) translateX(-50%); }
  50%      { transform: translateY(-40px) translateX(-50%); }
}

/* subtle grid */
.hero-section .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.premium-badge {
  display: inline-block;
  background: rgba(212,175,55,.1);
  border: 1px solid var(--border-hi);
  color: var(--gold-light);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  text-shadow: 0 2px 40px rgba(212,175,55,.12);
}
.hero-title .text-accent {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ─── Info / Stat Cards ─────────────────────────────────────────────────── */
.site-info-section { background: var(--bg-2); }

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1rem;
  text-align: center;
  height: 100%;
  font-weight: 600;
  font-size: .92rem;
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--ease);
}
.info-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-md);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 36px rgba(0,0,0,.6), 0 0 20px var(--gold-glow);
}
.info-card:hover::before { opacity: 1; }

/* ─── What Is Section ───────────────────────────────────────────────────── */
.what-is-section {
  background: var(--bg);
  position: relative;
}
.what-is-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(12,10,6,.82), rgba(12,10,6,.94)),
              url('../images/casino-bg.png') center/cover fixed;
  pointer-events: none;
}

.feature-list { max-width: 800px; margin: 0 auto; }
.feature-list li {
  margin-bottom: 1rem;
  padding: .7rem 1.1rem;
  background: rgba(212,175,55,.05);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--off-white);
  line-height: 1.7;
  transition: var(--ease);
}
.feature-list li:hover {
  background: rgba(212,175,55,.09);
  border-left-color: var(--gold-light);
}
.feature-list li strong { color: var(--gold-light); }

/* ─── Stepper ───────────────────────────────────────────────────────────── */
.stepper-section { background: var(--bg-2); }

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: var(--ease);
  height: 100%;
}
.step-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--ease);
}
.step-card:hover {
  border-color: var(--border-md);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.7), 0 0 30px var(--gold-glow);
}
.step-card:hover::after { transform: scaleX(1); }

.step-number {
  font-size: 5.5rem;
  font-weight: 800;
  color: rgba(212,175,55,.06);
  position: absolute;
  top: -18px; right: 12px;
  line-height: 1;
  font-family: var(--font-head);
}
.step-card h4 {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-top: .9rem;
  position: relative;
  z-index: 1;
}
.step-card p {
  color: var(--muted);
  font-size: .92rem;
  margin-top: .5rem;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* ─── CTA Banner ────────────────────────────────────────────────────────── */
.cta-banner { background: var(--bg-3); }

.cta-box {
  background: linear-gradient(135deg, #1E1A0E 0%, rgba(212,175,55,.12) 50%, #1E1A0E 100%);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold-dark), transparent, var(--gold));
  z-index: 0;
  opacity: .35;
}
.cta-box > * { position: relative; z-index: 1; }

/* ─── Partners ──────────────────────────────────────────────────────────── */
.partners-section { background: var(--bg); }

.partner-showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.partner-showcase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  transform: scaleX(0);
  transition: var(--ease);
}
.partner-showcase-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-md);
  box-shadow: 0 20px 50px rgba(0,0,0,.6), 0 0 30px var(--gold-glow);
}
.partner-showcase-card:hover::before { transform: scaleX(1); }
.partner-showcase-card h4 { color: var(--white); font-size: 1.15rem; }

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  background: rgba(212,175,55,.1);
  border: 1px solid var(--border-md);
  color: var(--gold-light);
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: .3px;
}

.bg-glass {
  background: rgba(212,175,55,.08);
  border: 1px solid var(--border-md);
  color: var(--gold-light) !important;
  font-weight: 500;
  padding: 5px 12px;
}

/* ─── Trust / Why Section ───────────────────────────────────────────────── */
.trust-section { background: var(--bg-2); }

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--ease);
  height: 100%;
}
.trust-card:hover {
  border-color: var(--border-md);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.5), 0 0 20px var(--gold-glow);
}
.trust-icon { font-size: 2.4rem; display: block; margin-bottom: .75rem; }
.trust-card h4 { color: var(--white); font-size: 1.1rem; margin-bottom: .6rem; }
.trust-card p  { color: var(--muted); font-size: .93rem; line-height: 1.75; }
.trust-card p.small { color: var(--muted); font-size: .85rem; }

/* ─── Games / Sports ────────────────────────────────────────────────────── */
.sports-section { background: var(--bg); }

.sport-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--ease);
  font-weight: 600;
  font-size: .9rem;
  color: var(--off-white);
}
.sport-card:hover {
  border-color: var(--border-md);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,.5), 0 0 18px var(--gold-glow);
  color: var(--gold-light);
}

/* ─── About ─────────────────────────────────────────────────────────────── */
.about-section { background: var(--bg-3); }

.vertical-image {
  min-height: 520px;
  border-radius: var(--radius-lg);
  background: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&q=80') center/cover;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-md);
}
.image-overlay-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,10,6,.95) 0%, transparent 100%);
  padding: 2rem 1.5rem 1.5rem;
}
.image-overlay-content h3 { color: var(--gold-light); font-size: 1.5rem; }
.image-overlay-content p  { color: var(--muted); }

.shadow-accent { box-shadow: -12px 12px 0 rgba(212,175,55,.18); }

.content-text { color: var(--off-white) !important; }
.content-text p { line-height: 1.85; color: var(--muted); }

.feature-bullet-list li {
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
  color: var(--muted);
  line-height: 1.7;
}
.feature-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-glow);
}

/* ─── Testimonials ──────────────────────────────────────────────────────── */
.testimonials-section { background: var(--bg-2); }

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: var(--ease);
}
.review-card:hover {
  border-color: var(--border-md);
  box-shadow: 0 12px 36px rgba(0,0,0,.5), 0 0 20px var(--gold-glow);
  transform: translateY(-4px);
}
.review-text     { font-style: italic; color: var(--muted); line-height: 1.8; }
.reviewer-name   {
  color: var(--gold-light);
  font-weight: 700;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}

/* ─── FAQ ───────────────────────────────────────────────────────────────── */
.faq-section { background: var(--bg-3); }

.premium-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}
.premium-accordion .accordion-button {
  background: var(--bg-card);
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-body);
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-sm) !important;
  box-shadow: none;
  border: 1px solid var(--border);
  transition: var(--ease);
}
.premium-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(212,175,55,.12), var(--bg-card-hover));
  color: var(--gold-light);
  border-color: var(--border-md);
}
.premium-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4AF37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.premium-accordion .accordion-body {
  color: var(--muted);
  padding: 1.1rem 1.3rem;
  line-height: 1.8;
  background: rgba(212,175,55,.03);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* ─── Responsible Gaming ─────────────────────────────────────────────────── */
.responsible-section { background: var(--bg-2); }
.responsible-box {
  background: rgba(212,175,55,.06);
  border: 1px solid var(--border-md) !important;
  border-radius: var(--radius-md);
}
.responsible-box h5 { color: var(--white); }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.premium-footer {
  background: linear-gradient(180deg, #0C0A06 0%, #060400 100%);
  border-top: 2px solid var(--border-md);
}
.footer-heading {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--gold-light);
  padding-bottom: 10px;
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.footer-desc       { color: var(--muted); line-height: 1.8; font-size: .93rem; }
.footer-links li   { margin-bottom: 10px; }
.footer-links a    { color: var(--muted); font-size: .93rem; }
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }
.content-text.small { color: var(--muted); }

/* ─── Floating Buttons ──────────────────────────────────────────────────── */
.floating-icons {
  position: fixed;
  bottom: 30px; right: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1000;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: var(--ease);
}
.float-whatsapp { background: #25D366; animation: waPulse 2.4s infinite; }
.float-telegram { background: #0088cc; }
.float-btn:hover { transform: scale(1.12); color: #fff; }

@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ─── CTA Shine Button ──────────────────────────────────────────────────── */
.cta-btn-animated { position: relative; overflow: hidden; }
.cta-btn-animated::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  animation: shine 3s linear infinite;
}
@keyframes shine { to { left: 200%; } }

/* ─── Scroll Reveal ─────────────────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease-out, transform .75s ease-out;
}
.reveal-up.active { opacity: 1; transform: translateY(0); }

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-section   { padding-top: 120px; }
  .vertical-image { min-height: 360px; margin-bottom: 2rem; }
  .shadow-accent  { box-shadow: none; border: 1px solid var(--border-md); }
  .nav-cta        { margin-top: 1rem; width: 100%; text-align: center; }
  .btn-accent     { font-size: 17px; }
  .trust-card     { border-left: none; border-top: 2px solid var(--border); }
  .trust-card:hover { border-top-color: var(--gold); }
}

@media (max-width: 767px) {
  .hero-desc  { font-size: .98rem; }
}

@media (max-width: 575px) {
  body           { font-size: 14px; }
  .hero-section  { padding-top: 82px; }
  .btn-accent    { font-size: 15px; padding: .7rem 1.6rem; }
  .info-card     { flex-direction: column; padding: 1rem .75rem; font-size: .85rem; }
  .step-card     { padding: 1.5rem; }
  .step-number   { font-size: 4rem; }
  .feature-bullet-list li { padding-left: 18px; }
  .feature-bullet-list li::before { width: 6px; height: 6px; top: 8px; }
  .floating-icons { bottom: 18px; right: 14px; }
  .float-btn     { width: 46px; height: 46px; font-size: 1.4rem; }
}
