
:root {
  --bg: #0a0e1a;
  --bg-card: #151923;
  --bg-card-hover: #1d212d;
  --text: #e4e6eb;
  --text-dim: #b0b3b8;
  --gold: #ffd700;
  --gold-dim: #ccaa00;
  --teal: #00d9c8;
  --border: rgba(255,255,255,.1);
}

* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.7;
  overflow-x:hidden;
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,14,26,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  transition: box-shadow 0.3s;
}
nav .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.5px;
}
nav .nav-cta {
  background: var(--gold);
  color: #000;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(255,215,0,.3);
}
nav .nav-cta:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255,215,0,.4);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1a1f35 0%, #0a0e1a 100%);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  border-bottom: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,215,0,.08), transparent 70%);
  pointer-events: none;
}
.hero .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  color: var(--text);
}
.hero h1 .highlight {
  color: var(--gold);
}
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-dim);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,217,200,.15);
  border: 1px solid var(--teal);
  color: var(--teal);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.hero .cta {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 1rem 3rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(255,215,0,.3);
  transition: all 0.3s;
}
.hero .cta:hover {
  background: var(--gold-dim);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,215,0,.4);
}

/* Main content container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
    padding: 3rem 15px;
}
/* Rankings Section */
.rankings {
  background: var(--bg);
  padding: 3rem 1.5rem;
}
.rankings h2 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.rankings .subtitle {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

/* Top 3 featured casinos - compact style */
.top-featured {
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.featured-card {
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 1.3rem 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
  position: relative;
  overflow: visible;
}
.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 12px 12px 0 0;
}
.featured-card:hover {
  background: var(--bg-card-hover);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(255,215,0,.2);
}

.featured-rank {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  min-width: 50px;
  text-align: center;
}
.featured-logo {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  overflow: hidden;
  color: #000;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.featured-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured-info {
  flex: 1;
  min-width: 0;
}
.featured-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}
.featured-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.featured-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}
.stars {
  color: var(--gold);
  font-size: 0.9rem;
}
.featured-bonus {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.tag {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  color: var(--text-dim);
  font-weight: 600;
}
.featured-cta {
  background: var(--gold);
  color: #000;
  padding: 0.7rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(255,215,0,.3);
}
.featured-cta:hover {
  background: var(--gold-dim);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(255,215,0,.4);
}

/* Compact casino list (rows #4-31) */
.casino-list {
  max-width: 900px;
  margin: 0 auto;
}
.casino-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
}
.casino-row:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold);
  transform: translateX(4px);
}
.row-rank {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dim);
  min-width: 40px;
}
.row-logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #000;
  flex-shrink: 0;
}

.row-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.row-info {
  flex: 1;
}
.row-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.row-bonus {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}
.row-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-right: 1rem;
}
.row-cta {
  background: var(--gold);
  color: #000;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: all 0.3s;
}
.row-cta:hover {
  background: var(--gold-dim);
  transform: scale(1.05);
}

/* Article content sections */
.content-section {
  max-width: 850px;
  margin: 3rem auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}
.content-section.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.content-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--gold);
  line-height: 1.3;
}
.content-section h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 2rem 0 1rem;
}
.content-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}
.content-section ul,
.content-section ol {
  margin: 1.2rem 0 1.2rem 1.5rem;
}
.content-section li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
}
.content-section .info-box {
  background: rgba(0,217,200,.1);
  border-left: 4px solid var(--teal);
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  font-size: 1rem;
  color: var(--text);
}
.content-section .info-box.teal {
  background: rgba(0,217,200,.1);
  border-color: var(--teal);
}
.content-section .info-box.gold {
  background: rgba(255,215,0,.1);
  border-color: var(--gold);
}

/* FAQ Accordion */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover {
  border-color: var(--gold);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  transition: all 0.3s;
  user-select: none;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.3rem;
}

/* Footer */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem 2rem;
  margin-top: 4rem;
  text-align: center;
}
footer .disclaimer {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}
footer .links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
footer .links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
footer .links a:hover {
  color: var(--gold);
}
footer .copyright {
  font-size: 0.8rem;
  color: var(--text-dim);
  opacity: 0.6;
}

/* Floating CTA Button */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(255,215,0,.4);
  z-index: 99;
  transition: all 0.3s;
  animation: pulse 2s infinite;
}
.floating-cta:hover {
  background: var(--gold-dim);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255,215,0,.5);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(255,215,0,.4); }
  50% { box-shadow: 0 8px 32px rgba(255,215,0,.6); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  
  .featured-card {
    flex-wrap: wrap;
    padding: 1rem;
  }
  .featured-rank {
    font-size: 1.4rem;
    min-width: 40px;
  }
  .featured-logo {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  .featured-info {
    flex: 1 1 100%;
    order: 3;
  }
  .featured-cta {
    order: 2;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  .featured-bonus {
    font-size: 0.85rem;
  }
  
  .casino-row {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .row-rank {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  .floating-cta {
    bottom: 10px;
    right: 10px;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }
}

