/* Hero Section - Casino Royal Theme */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(135deg, #0f051d 0%, #1a0a2e 50%, #2d1b4e 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.12) 0%, transparent 60%);
  animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
  50% { transform: scale(1.15) rotate(5deg); opacity: 1; }
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-logo {
    max-width: 300px !important;
    align-items: center;
    width: auto;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
    animation: logoFloat 3s ease-in-out infinite;
}

@media (min-width: 769px) {
  .hero-logo {
    max-width: 218px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    max-width: 100px !important;
    margin: 0 auto 20px;
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 69, 0, 0.1));
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  text-transform: uppercase;
  font-weight: 800;
  color: #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.hero-badge-dot {
  width: 12px;
  height: 12px;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 25px rgba(255, 215, 0, 1); }
  50% { opacity: 0.3; box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
}

.hero h1 {
  font-size: 3.6rem;
  letter-spacing: -1px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ff4500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  color: #e0d6ff;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 50%, #ff4500 100%);
  border: none;
  border-radius: 16px;
  font-size: 1.05rem;
  font-weight: 900;
  color: #1a0a2e;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 40px rgba(255, 215, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 50px rgba(255, 215, 0, 0.7);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: transparent;
  border: 2px solid rgba(255, 215, 0, 0.5);
  border-radius: 16px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffd700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-btn-secondary:hover {
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.hero-stats {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat {
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.05), rgba(138, 43, 226, 0.08));
  border-radius: 24px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hero-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ff4500);
}

.hero-stat:hover {
  border-color: rgba(255, 215, 0, 0.6);
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(138, 43, 226, 0.15));
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.hero-stat strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700 0%, #ff4500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.hero-stat span {
  font-size: 0.9rem;
  color: #c4b5fd;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Game Grid */
.game-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.game-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.game-card {
  background: linear-gradient(145deg, rgba(20, 27, 49, 0.9) 0%, rgba(10, 15, 31, 0.95) 100%);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(79, 70, 229, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  isolation: isolate;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.game-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #4f46e5 0%, #06b6d4 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.game-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 20px 60px rgba(79, 70, 229, 0.3);
}

.game-card:hover::before {
  opacity: 1;
}

.game-card:hover::after {
  opacity: 1;
}

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

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

.game-card-image-wrapper {
  overflow: hidden;
  position: relative;
}

.game-card-content {
  padding: 24px;
  position: relative;
}

.game-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.game-card p {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 16px;
}

.game-card-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.game-card-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}

/* News Featured Grid */
.news-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.news-featured-card {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(10, 15, 31, 0.95) 100%);
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(79, 70, 229, 0.25);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.news-featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5 0%, #06b6d4 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.news-featured-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(6, 182, 212, 0.6);
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.35);
}

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

.news-featured-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-featured-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.news-featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(79, 70, 229, 0.6) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.news-featured-card:hover .news-featured-overlay {
  opacity: 1;
}

.news-featured-icon {
  font-size: 2rem;
  background: rgba(10, 15, 31, 0.9);
  padding: 12px;
  border-radius: 50%;
  border: 2px solid #06b6d4;
}

.news-featured-content {
  padding: 28px;
}

.news-featured-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.news-featured-date {
  font-size: 0.85rem;
  color: #06b6d4;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.news-featured-tag {
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-featured-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.4;
  background: linear-gradient(90deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.news-featured-excerpt {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
}

.news-featured-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #06b6d4;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.news-featured-card:hover .news-featured-readmore {
  gap: 12px;
  color: #4f46e5;
}

/* Info Card */
.info-card {
  background: linear-gradient(145deg, rgba(79, 70, 229, 0.08) 0%, rgba(10, 15, 31, 0.9) 100%);
  padding: 40px;
  border-radius: 28px;
  border: 2px solid rgba(79, 70, 229, 0.25);
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.info-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 6px 25px rgba(79, 70, 229, 0.4);
}

.info-title {
  font-size: 2.1rem;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(90deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-intro {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.9;
}

.info-features-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.info-feature {
  background: rgba(10, 15, 31, 0.6);
  padding: 28px 30px;
  border-radius: 22px;
  border: 1px solid rgba(79, 70, 229, 0.18);
  display: flex;
  gap: 22px;
  transition: all 0.35s ease;
}

.info-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 12px 40px rgba(79, 70, 229, 0.2);
}

.info-feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}

.info-feature-content {
  flex: 1;
}

.info-subtitle {
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 800;
}

.info-card p {
  margin-bottom: 0;
  line-height: 1.8;
  color: #cbd5e1;
}

.info-list {
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 20px;
}

.info-list li {
  margin-bottom: 8px;
  color: #cbd5e1;
  line-height: 1.7;
}

/* Steps Timeline */
.steps-timeline {
  position: relative;
  margin-top: 40px;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #4f46e5 0%, #06b6d4 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
  z-index: 10;
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.5);
  border: 4px solid #0a0f1f;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.6);
}

.timeline-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(10, 15, 31, 0.95) 100%);
  border-radius: 24px;
  border: 2px solid rgba(79, 70, 229, 0.25);
  transition: all 0.4s ease;
  position: relative;
}

.timeline-item:hover .timeline-content {
  border-color: rgba(6, 182, 212, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(79, 70, 229, 0.3);
}

.timeline-image {
  flex: 0 0 300px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.timeline-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  transition: transform 0.4s ease;
}

.timeline-item:hover .timeline-placeholder {
  transform: scale(1.1);
}

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

.timeline-text {
  flex: 1;
  padding: 20px;
}

.timeline-text h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timeline-text p {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.8;
}

/* FAQ */
.faq-container {
  margin-top: 50px;
}

.faq-item {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(10, 15, 31, 0.9) 100%);
  border-radius: 20px;
  margin-bottom: 16px;
  border: 2px solid rgba(79, 70, 229, 0.18);
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item:hover {
  border-color: rgba(6, 182, 212, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
}

.faq-question {
  width: 100%;
  padding: 26px 30px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}

.faq-question-text {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 800;
}

.faq-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
  color: #ffffff;
}

.faq-item[data-open="true"] .faq-icon {
  transform: rotate(180deg);
}

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

.faq-item[data-open="true"] .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 30px 26px;
  font-size: 0.98rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0;
}

/* Popular Games */
.popular-games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 32px;
}

.popular-game-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(79, 70, 229, 0.03) 100%);
  border-radius: 20px;
  border: 1px solid rgba(79, 70, 229, 0.15);
  overflow: hidden;
  display: flex;
  transition: all 0.4s ease;
  position: relative;
}

.popular-game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 15px 50px rgba(79, 70, 229, 0.25);
}

.popular-game-image {
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.popular-game-placeholder {
  font-size: 4rem;
}

.popular-game-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 15, 31, 0.9);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.popular-game-info {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.popular-game-info h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 800;
}

.popular-game-info p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 16px;
}

.popular-game-btn {
  display: inline-block;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  width: fit-content;
}

.popular-game-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

/* Payment Methods */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.payment-method-card {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.06) 0%, rgba(10, 15, 31, 0.9) 100%);
  padding: 26px 30px;
  border-radius: 22px;
  border: 1px solid rgba(79, 70, 229, 0.2);
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.payment-method-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.payment-method-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 15px 45px rgba(79, 70, 229, 0.3);
}

.payment-method-card:hover::after {
  opacity: 1;
}

.payment-icon-wrapper {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
  transition: all 0.35s ease;
}

.payment-method-card:hover .payment-icon-wrapper {
  transform: rotate(10deg) scale(1.1);
}

.payment-icon {
  font-size: 2.8rem;
}

.payment-details {
  flex: 1;
}

.payment-details h4 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: #ffffff;
  font-weight: 800;
}

.payment-details p {
  font-size: 0.95rem;
  color: #94a3b8;
}

/* Responsible Gaming */
.responsible-gaming-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.12) 0%, rgba(79, 70, 229, 0.08) 100%);
  padding: 38px;
  border-radius: 20px;
  border: 2px solid rgba(239, 68, 68, 0.3);
  display: flex;
  gap: 32px;
  align-items: center;
}

.rg-icon {
  font-size: 4.5rem;
  flex-shrink: 0;
}

.rg-content {
  flex: 1;
}

.rg-content h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: #ef4444;
  font-weight: 800;
}

.rg-content p {
  color: #cbd5e1;
  margin-bottom: 18px;
  line-height: 1.8;
}

.rg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.rg-links span {
  font-size: 0.88rem;
  color: #e2e8f0;
  font-weight: 600;
}

/* Bonuses Grid */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  margin-top: 34px;
}

.bonus-card {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
  padding: 34px;
  border-radius: 18px;
  border: 2px solid rgba(79, 70, 229, 0.25);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 45px rgba(79, 70, 229, 0.25);
  border-color: rgba(6, 182, 212, 0.5);
}

.badge-decor {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: #4f46e5;
  border-radius: 50%;
  opacity: 0.12;
}

.badge-decor.secondary {
  background: #06b6d4;
}

.bonus-badge {
  display: inline-block;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 22px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.bonus-badge.secondary {
  background: linear-gradient(135deg, #06b6d4 0%, #4f46e5 100%);
}

.bonus-value {
  font-size: 2.3rem;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.bonus-value.secondary {
  background: linear-gradient(135deg, #06b6d4 0%, #4f46e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-subtitle {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 600;
}

.bonus-desc {
  color: #cbd5e1;
  margin-bottom: 22px;
  line-height: 1.7;
}

.bonus-card .hero-btn-primary.secondary {
  background: linear-gradient(135deg, #06b6d4 0%, #4f46e5 100%);
}

/* Trust Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.trust-card {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(10, 15, 31, 0.8) 100%);
  padding: 28px 30px;
  border-radius: 20px;
  border: 1px solid rgba(79, 70, 229, 0.18);
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #4f46e5 0%, #06b6d4 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trust-card:hover {
  border-color: rgba(6, 182, 212, 0.5);
  transform: translateX(8px);
  box-shadow: -10px 15px 40px rgba(79, 70, 229, 0.25);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(10, 15, 31, 0.9) 100%);
}

.trust-card:hover::before {
  opacity: 1;
}

.trust-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  min-width: 70px;
  line-height: 1;
}

.trust-content {
  display: flex;
  gap: 18px;
  align-items: center;
  flex: 1;
}

.trust-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 30px;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}

.trust-text {
  flex: 1;
}

.trust-text h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 800;
}

.trust-text p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  margin-top: 34px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(79, 70, 229, 0.1);
  transition: all 0.35s ease;
}

.testimonial-card:hover {
  border-color: rgba(6, 182, 212, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(79, 70, 229, 0.15);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: #fbbf24;
  font-size: 1.2rem;
}

.testimonial-text {
  color: #e2e8f0;
  font-size: 0.96rem;
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #ffffff;
  font-size: 1.1rem;
}

.author-avatar.secondary {
  background: linear-gradient(135deg, #06b6d4 0%, #4f46e5 100%);
}

.testimonial-author h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: #ffffff;
  font-weight: 700;
}

.testimonial-author p {
  color: #94a3b8;
  font-size: 0.86rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .popular-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .payment-methods-grid,
  .bonuses-grid,
  .trust-grid,
  .testimonials-grid,
  .news-featured-grid {
    grid-template-columns: 1fr;
  }
  
  .game-grid {
    gap: 20px;
  }
  
  .game-card {
    flex: 0 0 280px;
  }
  
  .timeline-content {
    gap: 20px;
  }
  
  .timeline-image {
    flex: 0 0 220px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: 280px;
  }
  
  .hero h1 {
    font-size: 2.3rem;
  }
  
  .popular-games-grid {
    grid-template-columns: 1fr;
  }
  
  .game-grid {
    gap: 15px;
  }
  
  .game-card {
    flex: 0 0 260px;
  }
  
  .popular-game-card {
    flex-direction: column;
  }
  
  .popular-game-image {
    min-width: auto;
    min-height: 140px;
  }
  
  .popular-game-placeholder {
    font-size: 3.5rem;
  }
  
  .popular-game-info {
    padding: 22px 20px;
  }
  
  .trust-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .trust-number {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 2.8rem;
  }
  
  .trust-content {
    flex-direction: column;
  }
  
  .trust-icon {
    width: 58px;
    height: 58px;
    font-size: 28px;
    border-radius: 14px;
  }
  
  .payment-method-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  
  .payment-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }
  
  .payment-icon {
    font-size: 2.5rem;
  }
  
  .payment-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bonuses-grid,
  .trust-grid,
  .testimonials-grid,
  .game-grid,
  .news-featured-grid {
    grid-template-columns: 1fr;
  }
  
  .responsible-gaming-box {
    flex-direction: column;
    padding: 34px 24px;
    text-align: center;
    gap: 24px;
  }
  
  .rg-links {
    justify-content: center;
  }
  
  .timeline-line {
    left: 30px;
  }
  
  .timeline-marker {
    left: 30px;
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  
  .timeline-content {
    flex-direction: column;
    margin-left: 60px;
    padding: 20px;
    gap: 20px;
  }
  
  .timeline-image {
    flex: 0 0 auto;
    width: 100%;
    height: 160px;
  }
  
  .timeline-item:nth-child(2) .timeline-content {
    flex-direction: column;
  }
  
  .timeline-text {
    padding: 0;
  }
  
  .news-featured-grid {
    grid-template-columns: 1fr;
  }
  
  .news-featured-card {
    max-width: 100%;
  }
  
  .news-featured-image {
    height: 180px;
  }
  
  .news-featured-content {
    padding: 22px;
  }
  
  .news-featured-title {
    font-size: 1.2rem;
  }
  
  .news-featured-excerpt {
    font-size: 0.95rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 50px;
  }
  
  .hero-logo {
    max-width: 159px;
    margin-bottom: 20px;
  }
  
  .hero h1 {
    font-size: 2rem;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 28px;
    padding: 0 10px;
  }
  
  .hero-stats {
    padding: 0 10px;
  }
  
  .hero-stat {
    padding: 22px 14px;
  }
  
  .hero-stat strong {
    font-size: 1.8rem;
  }
  
  .hero-stat span {
    font-size: 0.8rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.9rem;
  }
  
  .info-card {
    padding: 32px 22px;
  }
  
  .info-header {
    margin-bottom: 32px;
  }
  
  .info-title {
    font-size: 1.7rem;
    margin-bottom: 14px;
  }
  
  .info-intro {
    font-size: 0.98rem;
  }
  
  .info-feature {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  
  .info-feature-icon {
    width: 56px;
    height: 56px;
    font-size: 2rem;
    border-radius: 16px;
  }
  
  .info-subtitle {
    font-size: 1.18rem;
  }
  
  .step-card {
    padding: 28px 18px;
  }
  
  .step-number {
    font-size: 3rem;
    top: 10px;
    right: 14px;
  }
  
  .popular-game-card {
    padding: 28px 20px;
  }
  
  .popular-game-placeholder {
    font-size: 3.2rem;
  }
  
  .payment-method-card {
    padding: 28px 20px;
  }
  
  .payment-icon {
    font-size: 2.6rem;
  }
  
  .bonus-card {
    padding: 30px 22px;
  }
  
  .bonus-value {
    font-size: 2rem;
  }
  
  .trust-card {
    padding: 24px 20px;
  }
  
  .testimonial-card {
    padding: 26px 22px;
  }
  
  .faq-question {
    padding: 22px 22px;
  }
  
  .faq-question-text {
    font-size: 1.05rem;
  }
  
  .faq-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  
  .faq-answer p {
    padding: 0 22px 22px;
    font-size: 0.93rem;
  }
  
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }
  
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
  
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* News Grid & Cards Styles */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.news-card {
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.05), rgba(138, 43, 226, 0.08));
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  isolation: isolate;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ff4500);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.news-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.6);
}

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

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

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

.news-card-content {
  padding: 20px;
}

.news-meta {
  display: inline-block;
  font-size: 0.8rem;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 10px;
}

.news-card h4 {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.4;
  margin: 0;
  background: linear-gradient(90deg, #ffffff 0%, #e0d6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive Styles for News Grid */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .news-card-img {
    height: 200px;
  }

  .news-card-content {
    padding: 18px 16px;
  }

  .news-card h4 {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .news-grid {
    gap: 16px;
  }

  .news-card {
    border-radius: 16px;
  }

  .news-card-img {
    height: 180px;
  }
}
