/* ============================================================================
   VIP4567BET - Elite Casino Reviews
   Royal Purple & Gold Theme
   ============================================================================ */

/* ==========================================================================
   CSS Variables - Royal Purple & Gold Palette
   ========================================================================== */
:root {
  /* VIP Purple palette */
  --vip-dark:         #080416;
  --vip-dark2:        #120830;
  --vip-purple:       #2D1B69;
  --vip-purple-mid:   #4A2C8F;
  --vip-purple-light: #7B5CC0;
  --vip-card:         #1a1040;
  --vip-card2:        #221355;

  /* Gold accents */
  --gold-primary: #FFD700;
  --gold-accent:  #FFA500;
  --gold-dark:    #B8860B;
  --gold-light:   #FFF4D0;

  /* Text */
  --text-light: #FFFFFF;
  --text-gold:  #FFD700;
  --text-muted: #b0a0cc;

  /* Status colors */
  --accent-red:   #E53935;
  --accent-green: #2ECC71;
  --warning:      #FF6B35;

  /* Shadows */
  --shadow-gold:   0 4px 20px rgba(255, 215, 0, 0.3);
  --shadow-purple: 0 8px 32px rgba(74, 44, 143, 0.5);
  --shadow-dark:   0 8px 32px rgba(0, 0, 0, 0.7);
  --shadow-glow:   0 0 20px rgba(255, 215, 0, 0.4);
}

/* ==========================================================================
   Reset and Base
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  background: var(--vip-dark);
  background-image: url('../assets/images/vip4567bet-bg.svg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--text-gold);
  font-family: Georgia, 'Times New Roman', serif;
}

p { margin-bottom: 1rem; color: var(--text-muted); }

a { color: var(--gold-primary); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--gold-accent); text-shadow: var(--shadow-glow); }

/* ==========================================================================
   Site Header
   ========================================================================== */
.site-header {
  background: linear-gradient(135deg, var(--vip-dark2) 0%, var(--vip-purple) 100%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
  border-bottom: 2px solid var(--gold-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  animation: headerSlideDown 0.5s ease-out;
}

@keyframes headerSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.site-header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo { flex-shrink: 0; }

.site-header__logo-link {
  display: block;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.35));
}

.site-header__logo-link:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 16px rgba(255, 215, 0, 0.7));
}

.site-header__logo img { height: 64px; width: auto; max-width: 280px; }

.site-header__nav { display: flex; gap: 0.75rem; align-items: center; }

.site-header__nav-link {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.1rem;
  border-radius: 2rem;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.site-header__nav-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.35), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.site-header__nav-link:hover::after { transform: translateX(100%); }

.site-header__nav-link:hover {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
  color: var(--vip-dark);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* Mobile toggle */
.site-header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
}

.site-header__menu-toggle:hover { transform: scale(1.1); }

.site-header__menu-line {
  width: 22px;
  height: 2.5px;
  background: var(--vip-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.site-header__menu-toggle--open .site-header__menu-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.site-header__menu-toggle--open .site-header__menu-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.site-header__menu-toggle--open .site-header__menu-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

body.menu-open { overflow: hidden; position: fixed; width: 100%; }

/* ==========================================================================
   Trust Strip
   ========================================================================== */
.trust-strip {
  background: linear-gradient(135deg, var(--vip-purple) 0%, var(--vip-purple-mid) 100%);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding: 0.6rem 1.25rem;
}

.trust-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
}

.trust-item i { color: var(--gold-primary); font-size: 1rem; }

/* ==========================================================================
   Container
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
  animation: fadeInUp 0.7s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Page Hero Header
   ========================================================================== */
.header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(45, 27, 105, 0.85) 0%, rgba(18, 8, 48, 0.9) 100%);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 215, 0, 0.35);
  box-shadow: var(--shadow-purple), inset 0 1px 0 rgba(255,215,0,0.1);
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(123, 92, 192, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.header__title {
  color: var(--gold-primary);
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 28px rgba(255, 215, 0, 0.55);
  animation: titleGlow 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes titleGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.4); }
  50%       { text-shadow: 0 0 45px rgba(255, 215, 0, 0.85), 0 0 70px rgba(255, 165, 0, 0.5); }
}

.header__subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.header__stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.header__stat { text-align: center; }

.header__stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  font-family: Georgia, serif;
  line-height: 1;
}

.header__stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ==========================================================================
   Warning Section
   ========================================================================== */
.warning-section {
  background: linear-gradient(135deg, #7B0000, #B71C1C);
  color: var(--text-light);
  padding: 2rem 2.5rem;
  text-align: center;
  border-radius: 1rem;
  margin: 1.5rem 0 2rem;
  box-shadow: 0 6px 28px rgba(183, 28, 28, 0.45);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.warning-section__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

.warning-section__title { font-size: 1.6rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-light); }

.warning-section__text {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 auto 1.25rem;
  max-width: 860px;
  color: rgba(255,255,255,0.93);
}

.warning-section__link { color: var(--gold-light); text-decoration: underline; font-weight: 700; }
.warning-section__link:hover { color: var(--gold-primary); }

.warning-section__button {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 2px solid var(--gold-primary);
  border-radius: 2rem;
  color: var(--text-light);
  background: rgba(255, 215, 0, 0.15);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.warning-section__button:hover {
  background: var(--gold-primary);
  color: var(--vip-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.disclaimer-notice {
  background: rgba(45, 27, 105, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.disclaimer-notice__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Casino Cards
   ========================================================================== */
.casino-card {
  background: linear-gradient(145deg, var(--vip-card2) 0%, var(--vip-card) 60%, var(--vip-dark2) 100%);
  border-radius: 1.25rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-dark);
  display: grid;
  grid-template-columns: auto 1fr auto;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.35s ease, border-color 0.35s ease;
  border: 1px solid rgba(255, 215, 0, 0.18);
  animation: cardSlideIn 0.5s ease-out backwards;
}

@keyframes cardSlideIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.casino-card:nth-child(1) { animation-delay: 0.05s; }
.casino-card:nth-child(2) { animation-delay: 0.12s; }
.casino-card:nth-child(3) { animation-delay: 0.19s; }
.casino-card:nth-child(4) { animation-delay: 0.26s; }
.casino-card:nth-child(5) { animation-delay: 0.33s; }
.casino-card:nth-child(6) { animation-delay: 0.40s; }

.casino-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(74, 44, 143, 0.45), 0 0 30px rgba(255, 215, 0, 0.18);
  border-color: rgba(255, 215, 0, 0.55);
}

.casino-card--top-choice {
  border-color: var(--gold-primary);
  box-shadow: 0 6px 28px rgba(255, 215, 0, 0.3), var(--shadow-dark);
}

.casino-card--editors-pick { border-color: rgba(46, 204, 113, 0.4); }
.casino-card--popular      { border-color: rgba(255, 107, 53, 0.4); }

/* Badge */
.badge {
  position: absolute;
  top: 0;
  left: 2rem;
  padding: 0.45rem 1.25rem;
  border-radius: 0 0 0.75rem 0.75rem;
  color: var(--vip-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
}

.badge--top-choice   { background: linear-gradient(135deg, #FFD700, #FFA500); }
.badge--editors-pick { background: linear-gradient(135deg, #2ECC71, #1a9e55); color: #fff; }
.badge--popular      { background: linear-gradient(135deg, #FF6B35, #E53935); color: #fff; }

/* Card rank */
.casino-card__rank {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 1rem 1.25rem;
  margin-top: 1.75rem;
}

.casino-card__rank-inner {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
  color: var(--vip-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  font-family: Georgia, serif;
}

/* Card info */
.casino-card__info {
  grid-column: 2;
  padding: 2.25rem 1.5rem 1.5rem 1rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.casino-card__logo {
  width: 5.5rem;
  height: 5.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  cursor: pointer;
}

.casino-card__logo:hover {
  transform: scale(1.08);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.casino-card__logo img { width: 100%; height: 100%; object-fit: contain; padding: 0.5rem; }
.casino-card__logo--dark { background: #1a1a2a; }

.casino-card__meta { flex: 1; min-width: 0; }

.casino-card__details h3 { font-size: 1.45rem; color: var(--gold-primary); margin-bottom: 0.4rem; }

.casino-card__rating { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }

.casino-card__stars { color: var(--gold-primary); font-size: 1.1rem; letter-spacing: 1px; }

.casino-card__score {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-light);
  padding: 0.2rem 0.6rem;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 0.4rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.casino-card__visit-link {
  color: var(--gold-accent);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 0.875rem;
}

.casino-card__visit-link:hover { color: var(--gold-primary); }

/* Features */
.features { display: flex; flex-direction: column; gap: 0.4rem; }

.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.35rem 0.6rem;
  background: rgba(255, 215, 0, 0.04);
  border-radius: 0.4rem;
  border-left: 2px solid rgba(255, 215, 0, 0.4);
  transition: all 0.25s ease;
}

.feature:hover { background: rgba(255, 215, 0, 0.09); color: var(--text-light); transform: translateX(3px); }

.feature i { color: var(--gold-primary); font-size: 0.9rem; margin-top: 0.05rem; flex-shrink: 0; }
.feature__checkmark { color: var(--gold-primary); font-weight: 700; flex-shrink: 0; }
.feature a { color: inherit; text-decoration: none; }
.feature a:hover { color: var(--gold-primary); }

/* Offer section */
.offer-section {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 2.25rem 1.5rem 1.5rem;
  width: 20rem;
  flex-shrink: 0;
  border-left: 1px solid rgba(255, 215, 0, 0.1);
}

.bonus-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.12));
  border: 1px solid var(--gold-primary);
  padding: 1.25rem;
  border-radius: 0.875rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  min-height: 5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.bonus-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: bonusShine 3s linear infinite;
}

@keyframes bonusShine {
  from { transform: translateX(-100%) rotate(45deg); }
  to   { transform: translateX(200%) rotate(45deg); }
}

.bonus-section:hover { transform: scale(1.03); box-shadow: var(--shadow-gold); }

.bonus-section__amount { font-size: 1.1rem; font-weight: 700; color: var(--gold-primary); position: relative; z-index: 1; }
.bonus-section__subtitle { font-size: 0.85rem; color: var(--text-light); position: relative; z-index: 1; }

.play-btn {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
  color: var(--vip-dark);
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-shadow: var(--shadow-gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.play-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 36px rgba(255, 215, 0, 0.55);
  background: linear-gradient(135deg, #FFE566, var(--gold-primary));
  color: var(--vip-dark);
}

.terms-notice { font-size: 0.73rem; color: var(--text-muted); text-align: center; line-height: 1.4; }
.terms-notice__link { color: var(--gold-accent); font-weight: 600; }
.terms-notice__link:hover { color: var(--gold-primary); text-decoration: underline; }

/* ==========================================================================
   Info / Guide Section
   ========================================================================== */
.info-section {
  background: linear-gradient(135deg, var(--vip-card2), var(--vip-card));
  border-radius: 1rem;
  padding: 2.5rem;
  margin-top: 2.5rem;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.info-section__title { color: var(--gold-primary); font-size: 1.85rem; margin-bottom: 1.25rem; }
.info-section__text { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 1.25rem; }
.info-list { margin: 1.5rem 0; }
.info-list .feature { margin-bottom: 0.6rem; }

/* ==========================================================================
   Responsible Gaming
   ========================================================================== */
.responsible-gaming {
  background: linear-gradient(135deg, var(--vip-card2), var(--vip-card));
  border-radius: 1rem;
  padding: 3rem 2.5rem;
  margin-top: 2.5rem;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.responsible-gaming__title {
  color: var(--gold-primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1.25rem;
}

.responsible-gaming__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  border-radius: 2px;
}

.responsible-gaming__text { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }

.responsible-gaming__organizations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.org-card {
  background: linear-gradient(135deg, var(--vip-card2), var(--vip-card));
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 1rem;
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-dark);
  text-decoration: none;
  display: block;
  color: inherit;
  overflow: hidden;
}

.org-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-gold); border-color: var(--gold-primary); }

.org-card__logo-img {
  height: 64px;
  width: auto;
  max-width: 130px;
  margin-bottom: 1rem;
  object-fit: contain;
  filter: brightness(1.05);
  transition: filter 0.3s ease;
}

.org-card:hover .org-card__logo-img { filter: brightness(1.2); }

.org-card__title { color: var(--gold-primary); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem; }
.org-card__subtitle { color: var(--text-muted); font-size: 0.88rem; line-height: 1.4; }

/* Help Section */
.help-section {
  background: linear-gradient(135deg, #6a0000, #B71C1C);
  border: 1px solid var(--gold-primary);
  border-radius: 1rem;
  padding: 2.5rem;
  margin-top: 2.5rem;
  box-shadow: 0 6px 28px rgba(183, 28, 28, 0.4);
}

.help-section__header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; justify-content: center; }

.help-section__icon {
  background: var(--gold-primary);
  color: var(--vip-dark);
  font-size: 1.2rem;
  padding: 0.7rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-section__title { color: var(--text-light); font-size: 1.4rem; font-weight: 700; margin: 0; }
.help-section__contacts { margin-bottom: 2rem; }

.help-contact {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 0.75rem;
  margin-bottom: 0.875rem;
  transition: all 0.3s ease;
}

.help-contact:hover { transform: translateX(5px); background: rgba(0,0,0,0.4); border-color: var(--gold-primary); }

.help-contact__icon { font-size: 1.3rem; flex-shrink: 0; color: var(--gold-primary); }
.help-contact__info { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }
.help-contact__info strong { color: var(--gold-light); }
.help-contact__link { color: var(--gold-light); font-weight: 600; }
.help-contact__link:hover { color: var(--gold-primary); text-decoration: underline; }

.help-section__button {
  display: inline-block;
  background: var(--gold-primary);
  color: var(--vip-dark);
  padding: 0.9rem 2.25rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.help-section__button:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 36px rgba(255,215,0,0.55); color: var(--vip-dark); }

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  background: linear-gradient(135deg, var(--vip-card2), var(--vip-card));
  border-radius: 1.25rem;
  padding: 3rem;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.faq-section__title {
  font-size: 2rem;
  color: var(--gold-primary);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1.25rem;
}

.faq-section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  border-radius: 2px;
}

.faq-item {
  background: rgba(18, 8, 48, 0.6);
  border-radius: 0.875rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: border-color 0.3s ease;
}

.faq-item:hover { border-color: rgba(255, 215, 0, 0.3); }

.faq-item__question {
  width: 100%;
  padding: 1.25rem 3.5rem 1.25rem 4.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
  background: linear-gradient(135deg, rgba(255,215,0,0.08), rgba(255,165,0,0.04));
  border: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  position: relative;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item__question:hover { background: linear-gradient(135deg, rgba(255,215,0,0.13), rgba(255,165,0,0.08)); }

.faq-item__question::before {
  content: "?";
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
  color: var(--vip-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.faq-item__question-text { flex: 1; }

.faq-item__toggle {
  width: 1.75rem;
  height: 1.75rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
  color: var(--vip-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(0,0,0,0.2);
}

.faq-item__answer-content { padding: 0 2rem 0 4.5rem; }

.faq-item__answer-content p { margin: 1.25rem 0; color: var(--text-muted); line-height: 1.75; font-size: 0.97rem; }
.faq-item__answer-content a { color: var(--gold-accent); font-weight: 600; }

.faq-item--expanded .faq-item__question { background: linear-gradient(135deg, rgba(255,215,0,0.17), rgba(255,165,0,0.12)); }
.faq-item--expanded .faq-item__toggle { transform: rotate(45deg); }
.faq-item--expanded .faq-item__answer { max-height: 400px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: linear-gradient(135deg, var(--vip-dark), var(--vip-dark2));
  color: var(--text-muted);
  text-align: center;
  padding: 3rem 1.5rem;
  width: 100%;
  line-height: 1.7;
  border-top: 2px solid var(--gold-primary);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

.footer__text { margin: 1rem auto; font-size: 0.9rem; max-width: 1100px; }
.footer__text:first-child { font-weight: 700; color: var(--gold-primary); font-size: 1.05rem; }
.footer__company { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(212, 175, 55, 0.2); }
.footer__company .footer__text { margin: 0.4rem auto; font-size: 0.85rem; }
.footer__link { color: var(--gold-accent); font-weight: 600; transition: color 0.3s ease; }
.footer__link:hover { color: var(--gold-primary); text-decoration: underline; }

/* ==========================================================================
   Terms / Privacy / Cookies Pages
   ========================================================================== */
.terms-header { text-align: center; margin-bottom: 3rem; padding: 2.5rem 0; border-bottom: 1px solid rgba(255,215,0,0.25); }
.terms-header__title { color: var(--gold-primary); font-size: 2.5rem; margin-bottom: 0.75rem; }
.terms-header__subtitle { color: var(--text-muted); font-size: 1.1rem; }
.terms-header__date { color: var(--gold-accent); font-size: 0.95rem; font-weight: 600; margin-top: 0.25rem; }

.terms-content { max-width: 880px; margin: 0 auto; }

.terms-section {
  margin-bottom: 2.5rem;
  padding: 2.25rem;
  background: linear-gradient(135deg, var(--vip-card2), var(--vip-card));
  border-radius: 1rem;
  box-shadow: var(--shadow-dark);
  border-left: 4px solid var(--gold-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-section:hover { transform: translateX(4px); box-shadow: var(--shadow-gold); }

.terms-section__title { color: var(--gold-primary); font-size: 1.55rem; margin-bottom: 1.25rem; padding-bottom: 0.875rem; border-bottom: 1px solid rgba(255,215,0,0.18); }
.terms-section__content { color: var(--text-muted); line-height: 1.8; font-size: 0.98rem; }
.terms-section__content h3 { color: var(--gold-accent); font-size: 1.2rem; margin: 1.25rem 0 0.875rem; }
.terms-section__content p { margin-bottom: 1.25rem; }

.terms-list { margin: 1.25rem 0; padding-left: 0; list-style: none; }

.terms-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 2.5rem;
  margin-bottom: 0.6rem;
  border-radius: 0.4rem;
  background: rgba(255,215,0,0.04);
  border-left: 2px solid rgba(255,215,0,0.35);
  transition: background 0.25s ease, transform 0.25s ease;
}

.terms-list li:hover { background: rgba(255,215,0,0.09); transform: translateX(4px); }

.terms-list li::before { content: "✓"; position: absolute; left: 0.875rem; top: 0.65rem; color: var(--gold-primary); font-weight: 700; }

.warning-text { background: rgba(183,28,28,0.2); border: 1px solid var(--accent-red); border-radius: 0.75rem; padding: 1.25rem; margin: 1.5rem 0; color: var(--text-light) !important; font-weight: 600; }

.help-resources { background: rgba(255,215,0,0.06); border: 1px solid rgba(255,215,0,0.3); border-radius: 0.75rem; padding: 1.75rem; margin: 1.5rem 0; }
.help-resources h3 { color: var(--gold-primary); font-size: 1.2rem; margin-bottom: 0.875rem; }
.help-resources p { margin-bottom: 0.875rem; color: var(--text-light); font-weight: 500; }
.help-resources a { color: var(--gold-accent); font-weight: 600; }
.help-resources a:hover { color: var(--gold-primary); }

.contact-info { background: linear-gradient(135deg, var(--vip-card2), var(--vip-card)); border-radius: 0.75rem; padding: 1.75rem; margin: 1.5rem 0; border: 1px solid rgba(255,215,0,0.15); }
.contact-info p { margin-bottom: 0.875rem; color: var(--text-light); }
.contact-info strong { color: var(--gold-primary); }
.contact-info a { color: var(--gold-accent); font-weight: 600; }
.contact-info a:hover { color: var(--gold-primary); }

/* Breadcrumbs */
.breadcrumb-nav { margin-bottom: 1.25rem; }
.breadcrumb-nav ol { display: flex; list-style: none; font-size: 0.85rem; flex-wrap: wrap; align-items: center; }
.breadcrumb-nav li a { color: var(--vip-purple-light); }
.breadcrumb-nav li a:hover { color: var(--gold-primary); }
.breadcrumb-nav .sep { margin: 0 6px; color: rgba(255,255,255,0.3); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .casino-card { grid-template-columns: 1fr; }
  .casino-card__rank { grid-column: 1; padding: 1.5rem 1.5rem 0; justify-content: flex-start; width: auto; margin-top: 1.5rem; }
  .casino-card__info { grid-column: 1; padding: 1rem 1.5rem; flex-wrap: wrap; }
  .offer-section { grid-column: 1; padding: 0 1.5rem 1.5rem; width: 100%; border-left: none; border-top: 1px solid rgba(255,215,0,0.1); }
}

@media (max-width: 768px) {
  .site-header__menu-toggle { display: flex; }

  .site-header__nav {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--vip-dark2), var(--vip-purple));
    box-shadow: 0 8px 32px rgba(0,0,0,0.8);
    border-top: 2px solid var(--gold-primary);
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.875rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .site-header__nav--open { top: 68px; opacity: 1; visibility: visible; transform: translateY(0); }
  .site-header__nav-link { font-size: 1rem; padding: 0.9rem 1.25rem; width: 100%; text-align: center; }

  .header__title { font-size: 2rem; }
  .header__stats { gap: 2rem; }
  .trust-strip__inner { gap: 1.25rem; }
  .trust-item { font-size: 0.77rem; }
  .faq-section { padding: 2rem 1.25rem; }
  .faq-item__question { padding: 1.1rem 3rem 1.1rem 4rem; font-size: 0.97rem; }
  .faq-item__answer-content { padding: 0 1.25rem 0 4rem; }
  .responsible-gaming__organizations { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .footer { padding: 2rem 1rem; }
  .terms-header__title { font-size: 2rem; }
  .terms-section { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .header__title { font-size: 1.65rem; }
  .casino-card__info { flex-direction: column; }
  .responsible-gaming__organizations { grid-template-columns: 1fr; }
  .trust-strip__inner { gap: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

a:focus, button:focus { outline: 3px solid var(--gold-primary); outline-offset: 2px; }

@media print {
  .site-header, .warning-section, .footer, .trust-strip { display: none; }
  body { background: #fff; color: #000; }
}
