/* ============================================
   LEGENDDROP BONUS — MAIN STYLESHEET
   legenddrop-bonus.com
   Dark theme with gold/green accents
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: #1a2236;
  --bg-card-hover: #1f2a42;
  --bg-highlight: #232d44;
  --gold: #f5a623;
  --gold-light: #ffd700;
  --gold-dark: #c7880b;
  --green: #22c55e;
  --green-dark: #16a34a;
  --orange: #f97316;
  --purple: #8b5cf6;
  --red: #ef4444;
  --cyan: #06b6d4;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-color: #1e293b;
  --border-gold: rgba(245,166,35,0.3);
  --shadow-gold: 0 0 20px rgba(245,166,35,0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.8rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); }
strong { color: var(--text-primary); }

.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-orange { color: var(--orange); }

/* --- Header / Navbar --- */
.navbar {
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 20px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.navbar-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.navbar-logo span.accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000 !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(245,166,35,0.4);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 6px;
  margin-left: 16px;
}

.lang-switcher a {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}

.lang-switcher a:hover,
.lang-switcher a.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(245,166,35,0.1);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .mobile-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
  }
  .nav-links.open { display: flex; }
  .lang-switcher { margin-left: 0; justify-content: center; }
}

/* --- Hero Section --- */
.hero {
  text-align: center;
  padding: 60px 20px 50px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
}

.hero-amount {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(245,166,35,0.3));
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.hero-feature .icon {
  color: var(--green);
  font-size: 1.1rem;
}

/* --- Buttons / CTA --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  box-shadow: 0 4px 15px rgba(245,166,35,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,166,35,0.5);
  color: #000;
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: rgba(245,166,35,0.1);
  color: var(--gold-light);
}

.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

.btn-glow {
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(245,166,35,0.3); }
  50% { box-shadow: 0 4px 30px rgba(245,166,35,0.6); }
}

/* --- Promo Code Coupon --- */
.promo-coupon {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-highlight));
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 500px;
  margin: 20px auto;
  position: relative;
}

.promo-coupon::before,
.promo-coupon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--bg-primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.promo-coupon::before { left: -14px; }
.promo-coupon::after { right: -14px; }

.promo-code-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 3px;
  font-family: 'Courier New', monospace;
}

.promo-copy-btn {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.promo-copy-btn:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

.promo-copy-btn.copied {
  background: var(--green);
  color: #fff;
}

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

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

.card-icon {
  width: 50px;
  height: 50px;
  background: rgba(245,166,35,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

/* --- Bonus Recap Table --- */
.bonus-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

thead {
  background: var(--bg-highlight);
}

th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  border-bottom: 2px solid var(--border-gold);
}

td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

tbody tr:hover {
  background: rgba(245,166,35,0.03);
}

tbody tr:last-child td { border-bottom: none; }

.table-highlight {
  background: rgba(245,166,35,0.05);
  font-weight: 700;
  color: var(--gold) !important;
}

/* --- Sections --- */
.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-header p { color: var(--text-muted); }

/* --- Steps (How To) --- */
.steps {
  display: flex;
  gap: 24px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}

/* --- FAQ Accordion --- */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  padding: 18px 24px;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
  font-family: var(--font-main);
}

.faq-question:hover { background: var(--bg-highlight); }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 600px;
}

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

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

.vip-tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.vip-tier-name {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.vip-tier-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.vip-tier-info {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.vip-tier-info strong {
  display: block;
  color: var(--gold);
  font-size: 1.1rem;
}

/* --- Sticky CTA Banner --- */
.sticky-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(26,34,54,0.98), rgba(17,24,39,0.98));
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-gold);
  padding: 12px 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-banner.visible {
  transform: translateY(0);
}

.sticky-banner-text {
  font-weight: 700;
  font-size: 0.95rem;
}

.sticky-banner-text .highlight {
  color: var(--gold);
}

.sticky-banner .btn { padding: 10px 24px; font-size: 0.9rem; }

.sticky-banner-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
}

/* --- Comparison Table --- */
.comparison-table th:first-child,
.comparison-table td:first-child {
  position: sticky;
  left: 0;
  background: var(--bg-card);
  z-index: 1;
  min-width: 140px;
}

.comparison-table .winner {
  color: var(--green);
  font-weight: 700;
}

/* --- Rating Stars --- */
.stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}

/* --- Info Box --- */
.info-box {
  background: rgba(245,166,35,0.05);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box.green {
  background: rgba(34,197,94,0.05);
  border-left-color: var(--green);
}

.info-box.red {
  background: rgba(239,68,68,0.05);
  border-left-color: var(--red);
}

.info-box p:last-child { margin-bottom: 0; }

/* --- Pros & Cons --- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}

@media (max-width: 600px) {
  .pros-cons { grid-template-columns: 1fr; }
}

.pros-list li,
.cons-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pros-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.cons-list li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* --- Wager Calculator --- */
.calculator {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 600px;
  margin: 30px auto;
}

.calc-field {
  margin-bottom: 20px;
}

.calc-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.calc-field input,
.calc-field select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-main);
  transition: border-color var(--transition);
}

.calc-field input:focus,
.calc-field select:focus {
  outline: none;
  border-color: var(--gold);
}

.calc-result {
  background: rgba(245,166,35,0.1);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}

.calc-result-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}

/* --- Footer --- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 50px 0 20px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p { font-size: 0.85rem; color: var(--text-muted); max-width: 300px; }

.footer-col h4 {
  color: var(--text-primary);
  font-size: 0.9rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 4px 0;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.footer-18plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

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

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 16px 0 0;
  font-size: 0.85rem;
}

.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--text-muted); margin: 0 8px; }
.breadcrumbs .current { color: var(--text-secondary); }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* Glow effect on bonus amounts */
.glow {
  text-shadow: 0 0 10px rgba(245,166,35,0.5), 0 0 30px rgba(245,166,35,0.2);
}

/* --- Countdown Timer --- */
.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

.countdown-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: center;
  min-width: 70px;
}

.countdown-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.countdown-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* --- Tags / Badges --- */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-gold { background: rgba(245,166,35,0.15); color: var(--gold); }
.badge-green { background: rgba(34,197,94,0.15); color: var(--green); }
.badge-red { background: rgba(239,68,68,0.15); color: var(--red); }
.badge-purple { background: rgba(139,92,246,0.15); color: var(--purple); }

/* --- Responsive Utilities --- */
.hide-mobile { display: block; }
.show-mobile { display: none; }

@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
  .hero { padding: 40px 16px 36px; }
  .hero-features { gap: 16px; }
  .section { padding: 40px 0; }
  .steps { flex-direction: column; }
  .promo-coupon { flex-direction: column; text-align: center; padding: 20px; }
  .promo-coupon::before, .promo-coupon::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .card { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Scroll to top button --- */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 998;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gold);
  color: #000;
}

/* --- Affiliate Disclosure --- */
.affiliate-disclosure {
  background: rgba(139,92,246,0.05);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  margin: 20px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Last updated --- */
.last-updated {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}
