/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #0a0e27;
  --secondary-dark: #141b2d;
  --accent-blue: #00d4ff;
  --accent-purple: #7c3aed;
  --accent-pink: #ec4899;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --card-bg: rgba(20, 27, 45, 0.8);
  --card-border: rgba(124, 58, 237, 0.3);
  --glow-blue: rgba(0, 212, 255, 0.4);
  --glow-purple: rgba(124, 58, 237, 0.4);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background: var(--primary-dark);
  background-image: 
    radial-gradient(at 0% 0%, rgba(124, 58, 237, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(0, 212, 255, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(236, 72, 153, 0.15) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(124, 58, 237, 0.15) 0px, transparent 50%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.main {
  min-height: 100vh;
  position: relative;
}

.main-index {
  position: relative;
}

.main-index::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg12.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.main-index::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 39, 0.95) 0%,
    rgba(20, 27, 45, 0.98) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.main-index > * {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  background: rgba(20, 27, 45, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px var(--glow-blue));
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
  color: var(--text-light);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px var(--glow-blue);
  position: relative;
  z-index: 2;
}

.hero-title strong {
  display: block;
  margin-top: 10px;
  font-size: 64px;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

.hero-features {
  list-style: none;
  margin: 40px 0;
  text-align: left;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.hero-features li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  font-size: 18px;
  color: var(--text-light);
}

.hero-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--accent-blue);
  font-size: 24px;
  text-shadow: 0 0 10px var(--glow-blue);
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.badge {
  background: rgba(20, 27, 45, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.badge:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 0 20px var(--glow-blue);
  transform: translateY(-2px);
}

.hero-disclaimer {
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

/* Betting Sites Section */
.betting-sites {
  padding: 80px 0;
  position: relative;
  background-image: url("../images/bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.betting-sites::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.85);
  z-index: 0;
}

.betting-sites > * {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 60px;
  text-align: center;
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  border-radius: 2px;
}

.sites-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.site-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(124, 58, 237, 0.1) inset;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin-bottom: 40px;
}

.site-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-pink));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.site-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px var(--glow-purple),
    0 0 0 1px rgba(124, 58, 237, 0.3) inset;
}

.site-card:hover::before {
  opacity: 1;
}

.site-card.featured {
  border: 2px solid var(--accent-blue);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 30px var(--glow-blue);
}

.site-card.featured::before {
  opacity: 1;
}

.card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(0, 212, 255, 0.7); }
}

.card-main {
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, rgba(20, 27, 45, 0.9) 0%, rgba(10, 14, 39, 0.9) 100%);
  border-radius: 24px 24px 0 0;
  min-height: 200px;
  position: relative;
  padding: 0;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  flex: 1 1 100%;
  justify-content: stretch;
}

.card-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 24px;
  border-right: 1px solid rgba(124, 58, 237, 0.2);
  position: relative;
  flex: 1 1 auto;
}

.card-section:last-child {
  border-right: none;
}

.card-logo {
  flex: 0 0 220px;
  background: rgba(0, 212, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(124, 58, 237, 0.2);
}

.card-logo a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.card-logo a:hover {
  transform: scale(1.1);
}

.brand-logo {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.card-score {
  flex: 0 0 140px;
  background: rgba(0, 212, 255, 0.1);
  text-align: center;
  border-right: 1px solid rgba(124, 58, 237, 0.2);
}

.score-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.score-value {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-shadow: 0 0 20px var(--glow-blue);
}

.card-rating {
  flex: 1 1 200px;
  background: rgba(20, 27, 45, 0.5);
  text-align: center;
  border-right: 1px solid rgba(124, 58, 237, 0.2);
}

.star-rating {
  margin-bottom: 12px;
}

.star {
  font-size: 22px;
  color: rgba(148, 163, 184, 0.3);
  margin: 0 3px;
  filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.3));
}

.star.filled {
  color: #ffc107;
  filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.6));
}

.star.half {
  background: linear-gradient(90deg, #ffc107 50%, rgba(148, 163, 184, 0.3) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.info-icon {
  font-size: 14px;
  color: var(--accent-blue);
}

.views-count {
  color: var(--text-muted);
}

.card-bonus {
  flex: 1 1 220px;
  background: rgba(236, 72, 153, 0.05);
  text-align: center;
  border-right: 1px solid rgba(124, 58, 237, 0.2);
}

.bonus-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.4;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-button {
  flex: 0 0 auto;
  background: rgba(20, 27, 45, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 24px;
}

.btn-bonus {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 50%, var(--accent-pink) 100%);
  color: #fff;
  padding: 20px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 25px rgba(0, 212, 255, 0.4),
    0 0 0 0 rgba(0, 212, 255, 0.4);
  text-align: center;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-bonus::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-bonus:hover::before {
  width: 300px;
  height: 300px;
}

.btn-bonus:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 12px 35px rgba(0, 212, 255, 0.6),
    0 0 40px var(--glow-blue);
}

.btn-bonus:active {
  transform: translateY(-1px) scale(1.02);
}

.card-disclaimer {
  background: rgba(10, 14, 39, 0.8);
  color: var(--text-muted);
  padding: 20px 30px;
  font-size: 11px;
  line-height: 1.7;
  border-top: 1px solid rgba(124, 58, 237, 0.2);
}

/* Info Section */
.info-section {
  padding: 80px 0;
  position: relative;
  background-image: url("../images/bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.85);
  z-index: 0;
}

.info-section > * {
  position: relative;
  z-index: 1;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.info-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-light);
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-card p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 15px;
}

/* About Section */
.about-section {
  padding: 80px 0;
  position: relative;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 25px;
  color: var(--text-light);
  line-height: 1.9;
  font-size: 17px;
}

/* Footer */
.footer {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  color: var(--text-muted);
  padding: 60px 0 40px;
  position: relative;
  z-index: 10;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section h3 {
  color: var(--text-light);
  font-size: 20px;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-blue);
  transform: translateX(5px);
  text-shadow: 0 0 10px var(--glow-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  padding-top: 40px;
  margin-top: 40px;
}

.footer-disclaimer {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 25px;
}

.footer-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 25px;
}

/* Page Styles */
.page-content {
  padding: 80px 0;
  background: var(--primary-dark);
  min-height: 60vh;
  position: relative;
}

.page-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-content h2 {
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-content h3 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-content p {
  margin-bottom: 20px;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 16px;
}

.page-content ul,
.page-content ol {
  margin: 25px 0;
  padding-left: 35px;
}

.page-content li {
  margin-bottom: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}

.page-content a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-content a:hover {
  color: var(--accent-purple);
  text-shadow: 0 0 10px var(--glow-blue);
}

/* Responsive for cards */
@media (max-width: 1200px) {
  .card-main {
    flex-wrap: wrap;
  }

  .card-section {
    flex: 1 1 50%;
    min-width: 150px;
  }

  .card-button {
    flex: 1 1 100%;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-title strong {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 32px;
  }

  .card-main {
    flex-direction: column;
  }

  .card-section {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
  }

  .card-logo,
  .card-score,
  .card-rating,
  .card-bonus {
    min-width: 100%;
  }

  .card-button {
    border-top: 1px solid rgba(124, 58, 237, 0.2);
  }

  .btn-bonus {
    max-width: 100%;
    padding: 18px 40px;
  }

  .sites-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 32px;
  }
}
