/* ── Hero - COMPLETELY NEW STYLE ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #050508 0%, #0a0a0f 40%, #12121a 100%);
  overflow: hidden;
  padding: 0 5%;
}

/* Decorative Glow Background */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Fade into page */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--bg-main), transparent);
  pointer-events: none;
  z-index: 3;
}

/* Inner layout — split */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 10rem 0 8rem;
}

/* Left: text */
.hero-content { text-align: left; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 255, 136, 0.1);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.hero-badge__dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--primary);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-actions .btn-primary {
  font-family: 'Outfit', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-dark);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0, 255, 136, 0.4);
}

.hero-actions .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.6);
}

.btn-ghost {
  font-family: 'Outfit', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
  border-radius: 10px;
  background: transparent;
  color: var(--secondary);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--secondary);
  transition: var(--transition);
}

.btn-ghost:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffe873;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-stat strong {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.hero-stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Right: visual logo */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-logo 3s ease-in-out infinite;
}

.hero-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.5));
  transition: var(--transition);
  animation: float 4s ease-in-out infinite;
}

.hero-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 60px rgba(0, 255, 136, 0.7));
}

@keyframes pulse-logo {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 60px 30px rgba(0, 255, 136, 0.1);
  }
}

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

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll__line {
  width: 2px;
  height: 50px;
  background: linear-gradient(180deg, var(--primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.6); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ── Ticker Bar ── */
.ticker-bar {
  background: linear-gradient(90deg, var(--accent), var(--secondary), var(--primary), var(--accent));
  background-size: 200% 100%;
  animation: tickerBg 4s linear infinite;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 60px;
  position: relative;
  z-index: 5;
}

@keyframes tickerBg {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.ticker-label {
  flex-shrink: 0;
  background: var(--bg-dark);
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  gap: 0;
  animation: tickerScroll 140s linear infinite;
  width: max-content;
}

.ticker-item {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--bg-dark);
  white-space: nowrap;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
  font-weight: 800;
}

.ticker-dot {
  width: 8px;
  height: 8px;
  background: var(--bg-dark);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Featured Spotlight ── */
.featured-spotlight {
  padding: 8rem 0;
  background: var(--bg-dark);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2.5rem;
}

.spotlight-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.spotlight-card:hover {
  transform: translateY(-12px);
  border-color: var(--accent);
  box-shadow: 0 30px 80px rgba(255, 51, 102, 0.3);
}

.spotlight-card-image {
  height: 260px;
  overflow: hidden;
}

.spotlight-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.spotlight-card:hover .spotlight-card-image img {
  transform: scale(1.1);
}

.spotlight-card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.spotlight-tag {
  display: inline-block;
  background: rgba(255, 51, 102, 0.15);
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 2px solid var(--accent);
  width: fit-content;
}

.spotlight-card-content h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.spotlight-card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.spotlight-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--accent), #cc2952);
  color: #ffffff;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  width: fit-content;
  box-shadow: 0 6px 24px rgba(255, 51, 102, 0.3);
  margin-top: auto;
}

.spotlight-card:hover .spotlight-card-btn {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 51, 102, 0.5);
}

/* ── Game Features ── */
.game-features {
  padding: 8rem 0;
  background: var(--bg-main);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.game-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-color: var(--primary);
}

.game-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.game-card:hover img { transform: scale(1.1); }

.game-info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.game-info h3 {
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-main);
}

.game-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
  line-height: 1.7;
}

.btn-outline {
  font-family: 'Outfit', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  align-self: stretch;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.4);
}

/* ── Why Us ── */
.why-us {
  padding: 8rem 0;
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.why-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  font-size: 3.8rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
  transition: var(--transition);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-family: 'Outfit', sans-serif;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Stats Highlight ── */
.stats-highlight {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--accent), #cc2952);
  position: relative;
  overflow: hidden;
}

.stats-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 80% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Testimonials ── */
.testimonials {
  padding: 8rem 0;
  background: var(--bg-main);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid var(--border);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 0.5;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--bg-dark);
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.testimonial-info span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── Bonuses Section ── */
.bonuses-section {
  padding: 8rem 0;
  background: var(--bg-dark);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.5rem;
}

.bonus-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  border: 2px solid var(--border);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--secondary), var(--primary));
}

.bonus-card:hover {
  transform: translateY(-12px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
}

.bonus-icon {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.bonus-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.bonus-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 3.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1;
}

.bonus-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.bonus-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--secondary), #ccac00);
  color: var(--bg-dark);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}

.bonus-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

/* ── Payment Methods ── */
.payments-section {
  padding: 7rem 0;
  background: var(--bg-main);
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: center;
}

.payment-item {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--border);
  transition: var(--transition);
  font-size: 2.8rem;
}

.payment-item:hover {
  transform: scale(1.08);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

/* ── FAQ Section ── */
.faq-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-main) 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 20px;
  border: 2px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-main);
  transition: var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-toggle {
  font-size: 1.8rem;
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--primary);
  font-weight: 300;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 2rem 1.5rem;
}

/* ── Responsible Gambling ── */
.responsible-section {
  padding: 7rem 0;
  background: var(--bg-main);
}

.responsible-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 3rem;
  background: var(--bg-card);
  border-radius: 24px;
  border: 2px solid var(--border);
}

.responsible-text { flex: 1; min-width: 300px; }
.responsible-text h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 1rem;
}

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

.responsible-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.responsible-badge {
  background: rgba(0, 255, 136, 0.1);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 1rem 1.8rem;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  transition: var(--transition);
}

.responsible-badge:hover {
  background: var(--primary);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

/* ── Latest News ── */
.latest-news {
  padding: 8rem 0;
  background: var(--bg-dark);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2.5rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover img { transform: scale(1.08); }

.news-content {
  padding: 2rem;
}

.news-date {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.news-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 900;
}

.news-content h3 a { color: var(--text-main); }
.news-card:hover h3 a { color: var(--accent); }

.news-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Popular Articles ── */
.popular-section {
  padding: 8rem 0;
  background: var(--bg-main);
}

.popular-inner {}

.popular-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.popular-header .section-title {
  margin-bottom: 0;
  text-align: left;
  left: auto;
  transform: none;
}

.popular-header .section-title::before {
  left: 0;
  transform: none;
}

.popular-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.popular-item {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.popular-item:hover {
  border-color: var(--accent);
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.popular-item img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.popular-item:hover img { transform: scale(1.08); }

.popular-item__body { flex: 1; }

.popular-item__date {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.popular-item h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.4;
  font-family: 'Outfit', sans-serif;
}

.popular-item:hover h4 { color: var(--accent); }

/* ── CTA Banner ── */
.cta-banner {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--secondary));
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-text { flex: 1; min-width: 300px; }
.cta-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--bg-dark);
  margin-bottom: 0.8rem;
}

.cta-text p {
  color: rgba(5, 5, 8, 0.8);
  font-size: 1.1rem;
  max-width: 550px;
  line-height: 1.8;
}

.cta-btn {
  font-family: 'Outfit', sans-serif;
  display: inline-block;
  padding: 1.2rem 3.5rem;
  background: var(--bg-dark);
  color: var(--primary);
  border-radius: 12px;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.cta-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  color: var(--secondary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 9rem 0 7rem;
    gap: 3rem;
  }

  .hero-content { text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-logo {
    max-width: 250px;
  }

  .spotlight-grid {
    grid-template-columns: 1fr;
  }
  .popular-header { flex-direction: column; align-items: flex-start; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .payments-grid { grid-template-columns: repeat(3, 1fr); }
  .responsible-inner { flex-direction: column; text-align: center; }
  .responsible-badges { justify-content: center; }
}

@media (max-width: 768px) {
  .hero-inner { padding: 8rem 0 6rem; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3rem); letter-spacing: -0.02em; }
  .hero p { font-size: 1rem; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn-primary,
  .btn-ghost {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }

  .hero-stats { gap: 1.5rem; }
  .hero-stat strong { font-size: 1.6rem; }

  .hero-visual {
    max-width: 320px;
  }

  .game-features, .latest-news, .popular-section, .why-us, .cta-banner, .testimonials, .stats-highlight, .bonuses-section, .faq-section, .payments-section, .responsible-section, .featured-spotlight {
    padding: 5rem 0;
  }

  .news-grid, .grid-container, .bonuses-grid, .testimonials-grid, .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .game-card img, .news-card img { height: 210px; }
  .game-info, .news-content { padding: 1.8rem; }
  .btn-outline { width: 100%; text-align: center; justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .popular-item { flex-direction: column; text-align: center; }
  .popular-item img { width: 100%; height: 180px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text p { margin: 0 auto; }
  .cta-btn { width: 100%; text-align: center; }
  .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stat-number { font-size: 3rem; }
  .payments-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .hero-visual {
    max-width: 280px;
  }

  .hero-logo {
    max-width: 200px;
  }
}
