:root {
  --bg-primary: #0b0f19;
  --bg-secondary: #141b2d;
  --bg-card: rgba(20, 27, 45, 0.7);
  --accent-primary: #00ffcc;
  --accent-secondary: #7b2cbf;
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --border-color: rgba(255, 255, 255, 0.1);
  --font-main: 'Outfit', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
}

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

.nav__list {
  display: flex;
  gap: 30px;
}

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: var(--accent-primary);
}

/* Hero */
.hero {
  padding: 100px 0;
  text-align: center;
  background: radial-gradient(circle at 50% -20%, var(--bg-secondary) 0%, var(--bg-primary) 70%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, rgba(0, 255, 204, 0.05) 0deg, transparent 60deg, transparent 300deg, rgba(0, 255, 204, 0.05) 360deg);
  animation: rotate 20s linear infinite;
  z-index: 0;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: 20px;
  max-width: 600px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 auto;
}

.hero__features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 14px;
}

.hero__feature img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: linear-gradient(45deg, var(--accent-primary), #00b38f);
  color: var(--bg-primary);
  box-shadow: 0 10px 20px rgba(0, 255, 204, 0.2);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 255, 204, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
}

.btn--outline:hover {
  background: rgba(0, 255, 204, 0.1);
}

/* Casino List */
.casino-list {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 30px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
}

.card__rank {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--bg-secondary);
  -webkit-text-stroke: 1px var(--accent-primary);
  min-width: 60px;
  text-align: center;
}

.card__logo {
  width: 140px;
  height: 60px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  border: 1px solid var(--border-color);
}

.card__rating {
  text-align: center;
  min-width: 100px;
}

.rating-score {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-primary);
}

.rating-votes {
  font-size: 12px;
  color: var(--text-secondary);
}

.card__features {
  flex-grow: 1;
}

.card__features ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.card__features li::before {
  content: '✓';
  color: var(--accent-primary);
  font-weight: bold;
}

.card__disclaimer {
  width: 100%;
  font-size: 10px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px dashed var(--border-color);
  line-height: 1.3;
}

.card__actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 200px;
}

.link-review {
  text-align: center;
  font-size: 14px;
  color: var(--accent-primary);
  text-decoration: underline;
}

/* Articles */
.articles {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.article-card {
  background: var(--bg-primary);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-img {
  height: 200px;
  background: #1a2235;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.article-body {
  padding: 24px;
}

.article-title {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 12px;
}

.article-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.article-link {
  color: var(--accent-primary);
  font-size: 14px;
  font-weight: 600;
}

/* FAQ */
.faq {
  padding: 80px 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.faq-q {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent-primary);
}

.faq-a {
  color: var(--text-secondary);
  font-size: 15px;
}

/* Reviews Grid */
.reviews-grid-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  border: none;
}

.review-card {
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  background: var(--bg-secondary);
}

.review-card img {
  max-width: 130px;
  max-height: 60px;
  object-fit: contain;
  background: #ffffff;
  padding: 10px;
  border-radius: 8px;
  width: 100%;
}

.review-card a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
  text-decoration: underline;
}

.review-card a:hover {
  color: var(--accent-primary);
}

/* Safety Logos */
.safety-section {
  padding: 60px 0 80px;
  text-align: center;
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.safety-section h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 40px;
  color: var(--text-primary);
  font-weight: 700;
}

.safety-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.safety-logos img {
  max-height: 50px;
  max-width: 160px;
  object-fit: contain;
  background: #ffffff;
  padding: 5px 10px;
  border-radius: 4px;
}

/* Footer */
.footer {
  background: #06090f;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color);
}

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

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.3s;
}

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

.disclaimer {
  font-size: 12px;
  color: #666;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 992px) {
  .card {
    flex-direction: column;
    text-align: center;
  }
  .card__features ul {
    align-items: center;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
