@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css');

:root {
  /* Casino Theme Colors */
  --primary-gold: #FFD700;
  --secondary-gold: #FFA500;
  --accent-gold: #FFC107;
  --primary-blue: #095DB5;
  --secondary-blue: #1E3A8A;
  --accent-blue: #3B82F6;
  --dark-bg: #0A0A0A;
  --card-bg: #1A1A1A;
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B0;
  --text-muted: #808080;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --gradient-primary: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Enhanced Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(9, 93, 181, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
  z-index: -1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Enhanced Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--dark-bg);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.btn-card {
  background: var(--gradient-secondary);
  color: var(--text-primary);
  padding: 8px 16px;
  font-size: 12px;
}

.btn-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(9, 93, 181, 0.3);
}

/* Enhanced Navbar */
/* Breadcrumbs Styles */
.breadcrumbs {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--primary-gold);
    font-weight: 600;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary-gold);
}

.breadcrumb-item.active {
    color: var(--primary-gold);
    font-weight: 600;
}

.breadcrumb-item i {
    font-size: 0.8rem;
}

/* Trust Signals Styles */
.trust-signals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    min-width: 120px;
}

.trust-badge:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.trust-badge img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(1.2);
}

.trust-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.2;
}

.navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo img {
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.navbar-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.navbar-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-menu li a:hover::after {
  width: 100%;
}

.navbar .auth-buttons {
  display: flex;
  gap: 15px;
}

.auth-btn {
  display: inline-block;
  transition: var(--transition);
  border-radius: 8px;
  overflow: hidden;
}

.auth-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.auth-btn img {
  height: 40px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.auth-btn:hover img {
  filter: brightness(1.1);
}

/* Enhanced Main Layout */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--gradient-primary);
  color: var(--dark-bg);
  padding: 12px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-glow);
}

.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: announcement-shine 3s infinite;
}

@keyframes announcement-shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.announcement-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.announcement-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 24px;
}

.marquee-text {
  display: flex;
  animation: marquee-scroll 20s linear infinite;
  white-space: nowrap;
  gap: 60px;
}

.announcement-marquee:hover .marquee-text {
  animation-play-state: paused;
}

.marquee-text span {
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  padding-right: 60px;
}

@keyframes marquee-scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.announcement-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  flex: 1;
}

.announcement-text i {
  font-size: 16px;
  animation: pulse 2s infinite;
}

.announcement-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-announcement {
  background: var(--dark-bg);
  color: var(--primary-gold);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 2px solid var(--dark-bg);
}

.btn-announcement:hover {
  background: transparent;
  color: var(--dark-bg);
  border-color: var(--dark-bg);
  transform: translateY(-1px);
}

.announcement-close {
  background: transparent;
  border: none;
  color: var(--dark-bg);
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.announcement-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

/* Hero Section with Image Slider */
.hero {
  position: relative;
  background: var(--gradient-dark);
  border-radius: 20px;
  margin: 30px 0;
  padding: 60px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-image-slider {
  margin: 30px 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider-slide.active {
  opacity: 1;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}

.slider-btn {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: var(--text-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: var(--primary-gold);
  color: var(--dark-bg);
  transform: scale(1.1);
}

.slider-btn i {
  font-size: 20px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--primary-gold);
  transform: scale(1.2);
}

.slider-dots .dot:hover {
  background: var(--text-primary);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--dark-bg);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2,
.section-header h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section - New Design */
.about-us {
  margin: 60px 0;
}

/* Feature Showcase - New Eye-Catching Design */
.features-showcase {
  margin-bottom: 80px;
}

/* Hero Feature Card */
.hero-feature-card {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 50%, var(--dark-bg) 100%);
  border-radius: 25px;
  padding: 60px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--primary-gold);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.hero-feature-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-coin {
  position: absolute;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
  opacity: 0.3;
}

.floating-coin:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-coin:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 1.5s;
}

.floating-coin:nth-child(3) {
  top: 30%;
  right: 30%;
  animation-delay: 3s;
}

.floating-coin:nth-child(4) {
  bottom: 20%;
  left: 20%;
  animation-delay: 4.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-feature-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: var(--dark-bg);
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.hero-feature-content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-feature-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
}

.game-showcase {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.game-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 215, 0, 0.1);
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: var(--transition);
}

.game-item:hover {
  background: var(--primary-gold);
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.game-icon {
  font-size: 1.5rem;
}

.game-item span {
  font-weight: 600;
  font-size: 14px;
}

.btn-hero {
  background: var(--gradient-primary);
  color: var(--dark-bg);
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  transition: var(--transition);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.hero-feature-visual {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  z-index: 1;
}

.casino-wheel {
  position: relative;
  width: 380px;
  height: 380px;
}

.wheel-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 4px solid var(--primary-gold);
  box-shadow: 
    0 0 30px rgba(255, 215, 0, 0.3),
    inset 0 0 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.wheel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: wheel-spin 8s linear infinite;
}

.wheel-segment {
  position: absolute;
  width: 50%;
  height: 50%;
  transform-origin: 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 0 100%;
  transition: all 0.3s ease;
}

.wheel-segment:nth-child(1) { transform: rotate(0deg); }
.wheel-segment:nth-child(2) { transform: rotate(60deg); }
.wheel-segment:nth-child(3) { transform: rotate(120deg); }
.wheel-segment:nth-child(4) { transform: rotate(180deg); }
.wheel-segment:nth-child(5) { transform: rotate(240deg); }
.wheel-segment:nth-child(6) { transform: rotate(300deg); }

.wheel-segment[data-color="gold"] {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
}

.wheel-segment[data-color="blue"] {
  background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
  color: #fff;
}

.wheel-segment[data-color="red"] {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  color: #fff;
}

.wheel-segment[data-color="green"] {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #fff;
}

.wheel-segment[data-color="purple"] {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  color: #fff;
}

.wheel-segment[data-color="orange"] {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #fff;
}

.segment-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
  animation: icon-bounce 2s ease-in-out infinite;
}

.segment-text {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d2d 100%);
  border-radius: 50%;
  border: 4px solid var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 25px rgba(255, 215, 0, 0.4),
    inset 0 0 15px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.center-logo {
  font-size: 2.5rem;
  animation: center-pulse 3s ease-in-out infinite;
}

.wheel-pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid var(--primary-gold);
  z-index: 15;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.wheel-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  font-size: 1.6rem;
  animation: sparkle-float 4s ease-in-out infinite;
}

.sparkle-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.sparkle-2 {
  top: 30%;
  right: 20%;
  animation-delay: 1s;
}

.sparkle-3 {
  bottom: 25%;
  left: 25%;
  animation-delay: 2s;
}

.sparkle-4 {
  bottom: 15%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes wheel-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes icon-bounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}

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

@keyframes sparkle-float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  50% { 
    transform: translateY(-15px) rotate(180deg);
    opacity: 1;
  }
}

/* Feature Cards Grid */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 215, 0, 0.05) 50%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover .card-glow {
  opacity: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.card-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon i {
  font-size: 2.5rem;
  color: var(--primary-gold);
  z-index: 2;
  position: relative;
}

.pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary-gold);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.feature-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

.card-stats {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  background: var(--dark-bg);
  color: var(--primary-gold);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: var(--transition);
}

.feature-card:hover .stat {
  background: var(--primary-gold);
  color: var(--dark-bg);
  transform: scale(1.05);
}

/* Card Specific Styles */
.live-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 20px 50px rgba(9, 93, 181, 0.3);
}

.payid-card:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.security-card:hover {
  border-color: var(--success);
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.3);
}

.bonus-card:hover {
  border-color: var(--warning);
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.3);
}

/* Live Gaming Experience - New Design */
.live-gaming-showcase {
  margin-bottom: 80px;
}

.live-gaming-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-secondary);
  color: var(--text-primary);
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(9, 93, 181, 0.3);
}

.live-gaming-header h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.live-gaming-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

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

/* Live Studio Card - New Design */
.live-studio-card {
  background: linear-gradient(135deg, var(--card-bg) 0%, #1a1a2e 100%);
  border-radius: 25px;
  padding: 35px;
  border: 2px solid var(--primary-blue);
  box-shadow: 0 25px 80px rgba(9, 93, 181, 0.25);
  position: relative;
  overflow: hidden;
}

.studio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.live-dot {
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  animation: live-pulse 1.5s infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.viewer-count {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
}

.studio-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.main-dealer-view {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dealer-camera-main {
  position: relative;
}

.camera-frame {
  background: var(--dark-bg);
  border-radius: 20px;
  padding: 25px;
  border: 3px solid var(--primary-blue);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dealer-avatar-main {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dealer-image {
  font-size: 4rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
  border-radius: 50%;
  border: 3px solid var(--primary-gold);
  box-shadow: 0 8px 25px rgba(9, 93, 181, 0.3);
}

.dealer-info {
  flex: 1;
}

.dealer-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.dealer-title {
  font-size: 14px;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 3px;
}

.dealer-experience {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.camera-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
}

.recording-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #ef4444;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.rec-dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: live-pulse 1s infinite;
}

.quality-badge {
  background: var(--primary-gold);
  color: var(--dark-bg);
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.table-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

.casino-table {
  position: relative;
  width: 200px;
  height: 120px;
  background: #0f5132;
  border-radius: 20px;
  border: 4px solid #8b4513;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.table-surface {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.table-felt {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f5132 0%, #198754 100%);
}

.table-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 15px,
    rgba(255, 255, 255, 0.1) 15px,
    rgba(255, 255, 255, 0.1) 30px
  );
}

.table-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-gold);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.table-rail {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 3px solid #654321;
  border-radius: 24px;
}

.rail-lights {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.rail-light {
  width: 8px;
  height: 8px;
  background: var(--primary-gold);
  border-radius: 50%;
  animation: blink 2s infinite;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rail-light:nth-child(2) { animation-delay: 0.5s; }
.rail-light:nth-child(3) { animation-delay: 1s; }
.rail-light:nth-child(4) { animation-delay: 1.5s; }

.table-chips {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
}

.chip-stack {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.chip-red { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
.chip-blue { background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%); }
.chip-green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }

.studio-controls-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.control-section {
  background: var(--dark-bg);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(9, 93, 181, 0.3);
}

.control-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.control-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.control-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(9, 93, 181, 0.1);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.control-item:hover {
  background: rgba(9, 93, 181, 0.2);
  color: var(--text-primary);
}

.connection-status {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-secondary);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-indicator.online { background: #10b981; }
.status-indicator.hd { background: var(--primary-gold); }
.status-indicator.latency { background: #3b82f6; }

.studio-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(9, 93, 181, 0.2);
}

.live-stats {
  display: flex;
  gap: 25px;
}

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

.stat-number {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 2px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-join-live {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: var(--dark-bg);
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  transition: var(--transition);
}

.btn-join-live:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
  color: var(--dark-bg);
}

/* Live Games Showcase */
.live-games-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.live-game-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(9, 93, 181, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.live-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(9, 93, 181, 0.2);
  border-color: var(--primary-blue);
}

.game-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.game-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  border-radius: 15px;
  border: 3px solid var(--primary-blue);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(9, 93, 181, 0.2);
}

.game-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: var(--transition);
}

.game-icon:hover img {
  transform: scale(1.05);
}

.game-info {
  flex: 1;
}

.game-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.game-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.live-badge {
  background: #ef4444;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: live-pulse 2s infinite;
}

.game-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 2px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-preview {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  border-radius: 10px;
  border: 1px solid rgba(9, 93, 181, 0.3);
}

/* Game-specific previews */
.card-stack {
  display: flex;
  gap: 5px;
}

.card {
  width: 30px;
  height: 40px;
  background: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-1 { transform: rotate(-5deg); }
.card-2 { transform: rotate(0deg); }
.card-3 { transform: rotate(5deg); }

.roulette-wheel {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0f5132 0%, #198754 100%);
  border-radius: 50%;
  border: 3px solid #8b4513;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wheel-inner {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.baccarat-table {
  display: flex;
  gap: 15px;
  align-items: center;
}

.player-area,
.banker-area {
  background: var(--primary-blue);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

/* Live Features */
.live-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--card-bg);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(9, 93, 181, 0.1);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary-blue);
  box-shadow: 0 8px 25px rgba(9, 93, 181, 0.15);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-primary);
  flex-shrink: 0;
}

.feature-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Trust Indicators */
.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.trust-item {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.trust-item:hover::before {
  transform: scaleX(1);
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--primary-gold);
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--dark-bg);
}

.trust-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.trust-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Security & Trust Section */
.security-trust {
    margin: 60px 0;
}

/* Security Features */
.security-features {
    margin-top: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.security-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

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

.security-card.payment-security {
    border-color: var(--primary-blue);
}

.security-card.fair-play {
    border-color: var(--primary-gold);
}

.security-card.transparency {
    border-color: var(--primary-green);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2.5rem;
    transition: var(--transition);
}

.payment-security .card-icon {
    background: linear-gradient(135deg, var(--primary-blue), #1e3a8a);
    color: white;
}

.fair-play .card-icon {
    background: linear-gradient(135deg, var(--primary-gold), #d97706);
    color: white;
}

.transparency .card-icon {
    background: linear-gradient(135deg, var(--primary-green), #059669);
    color: white;
}

.security-card:hover .card-icon {
    transform: scale(1.1);
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-text);
}

.card-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
    gap: 10px;
}

.badge {
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.badge:hover {
    background: #fbbf24;
    transform: scale(1.05);
}

.audit-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.audit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.audit-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.transparency-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* Banking Section */
.banking-section {
    background: linear-gradient(135deg, var(--card-bg) 0%, #1a1a2e 100%);
    border-radius: 25px;
    padding: 50px;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 25px 80px rgba(9, 93, 181, 0.15);
}

.banking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.banking-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-text);
}

.banking-text p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.banking-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.banking-feature {
    display: flex;
  gap: 20px;
    align-items: flex-start;
}

.banking-feature .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-gold), #d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-details h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--light-text);
}

.feature-details p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.banking-visual {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bank-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bank-logo {
    background: var(--dark-bg);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
  padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-gold);
    transition: var(--transition);
}

.bank-logo:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: scale(1.05);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--dark-bg);
    border-radius: 12px;
    border: 1px solid var(--primary-blue);
    transition: var(--transition);
}

.payment-item:hover {
    border-color: var(--primary-gold);
    transform: translateX(5px);
}

.payment-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.payment-item span {
    font-weight: 600;
    color: var(--light-text);
}

.bonus-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.bonus-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonus-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

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

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--primary-gold);
}

.bonus-card.featured {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-color: var(--primary-gold);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.card-header i {
  font-size: 2rem;
  color: var(--primary-gold);
}

.card-badge {
  background: var(--gradient-primary);
  color: var(--dark-bg);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.bonus-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.bonus-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.card-cta {
  margin-top: auto;
}

/* Promotions */
.bonus-promotions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo-carousel {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.carousel-container {
  position: relative;
  height: 200px;
}

.promo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.promo-slide.active {
  opacity: 1;
}

.promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  color: var(--text-primary);
}

.promo-text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary-gold);
}

.main-banner {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.main-banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.banner-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  padding: 15px 30px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
}

.main-banner:hover .banner-cta {
  opacity: 1;
}

.main-banner:hover img {
  transform: scale(1.05);
}

/* Premium Games Experience Section */
.games-experience {
    margin: 80px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 100%);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.games-experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(9, 93, 181, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Game Categories Grid */
.game-categories-grid {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
    margin-bottom: 60px;
}

.game-category-card {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
  overflow: hidden;
}

.game-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.game-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

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

.slots-category {
    border-color: var(--primary-gold);
}

.live-category {
    border-color: var(--primary-blue);
}

.sports-category {
    border-color: var(--primary-green);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: var(--transition);
}

.slots-category .category-icon {
    background: linear-gradient(135deg, var(--primary-gold), #d97706);
    color: white;
}

.live-category .category-icon {
    background: linear-gradient(135deg, var(--primary-blue), #1e3a8a);
    color: white;
}

.sports-category .category-icon {
    background: linear-gradient(135deg, var(--primary-green), #059669);
    color: white;
}

.category-badge {
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-text);
}

.category-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.category-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

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

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Category Visuals */
.category-visual {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.game-image-container {
    position: relative;
  width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.game-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.game-image-container:hover .category-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.game-image-container:hover .image-overlay {
    opacity: 1;
}

.play-indicator {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
  font-size: 1.5rem;
    transition: var(--transition);
    animation: pulse-glow 2s ease-in-out infinite;
}

.play-indicator:hover {
    background: #fbbf24;
    transform: scale(1.1);
}

.live-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff0000;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: live-pulse 1s ease-in-out infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: live-pulse 1s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
}


/* Category CTA */
.category-cta {
    text-align: center;
}

.btn-category {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

/* Interactive Trust & Fairness Commitment */
.trust-commitment-interactive {
    margin-bottom: 80px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 50%, var(--dark-bg) 100%);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.trust-commitment-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(9, 93, 181, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Trust Hero Section */
.trust-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.trust-badge-large {
    background: linear-gradient(135deg, var(--primary-gold), #d97706);
    border-radius: 25px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    animation: badge-pulse 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.trust-badge-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badge-shine 3s ease-in-out infinite;
}

.badge-icon {
    width: 80px;
    height: 80px;
    background: var(--dark-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-gold);
    animation: icon-rotate 6s linear infinite;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark-bg);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.badge-subtitle {
  font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.trust-content {
    flex: 1;
}

.trust-content h3 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-gold), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
  line-height: 1.6;
}

/* Interactive Feature Cards */
.trust-features-interactive {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.feature-card-interactive {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-blue));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card-interactive:hover::before {
    opacity: 0.1;
}

.feature-card-interactive:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.2);
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-blue), var(--primary-green), var(--primary-gold));
    border-radius: 25px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    animation: glow-rotate 3s linear infinite;
}

.feature-card-interactive:hover .card-glow {
    opacity: 1;
}

.feature-icon-animated {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-gold), #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.feature-card-interactive:hover .icon-circle {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.icon-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: particle-float 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.feature-text h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-text);
}

.feature-text p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-stats {
    display: flex;
  gap: 20px;
    margin-bottom: 25px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-action {
    text-align: center;
}

.btn-interactive {
    background: linear-gradient(135deg, var(--primary-gold), #d97706);
    color: var(--dark-bg);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
  overflow: hidden;
}

.btn-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.btn-interactive:hover::before {
    left: 100%;
}

.btn-interactive:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

/* Interactive Goal Section */
.trust-goal-interactive {
    background: linear-gradient(135deg, var(--primary-gold), #d97706);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.goal-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.goal-particles {
    position: relative;
    width: 100%;
    height: 100%;
}

.particle-large {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: particle-large-float 6s ease-in-out infinite;
}

.particle-large:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-large:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.particle-large:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.particle-large:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 4.5s;
}

.goal-content-interactive {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.goal-text {
    flex: 1;
}

.goal-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-bg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.goal-badge i {
    color: var(--primary-gold);
}

.goal-text h4 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.goal-text p {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
}

.goal-metrics {
    display: flex;
    gap: 30px;
}

.metric {
  text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.goal-visual-interactive {
    position: relative;
}

.trust-wheel {
    width: 200px;
    height: 200px;
    position: relative;
    animation: wheel-rotate 10s linear infinite;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.wheel-ring {
    position: absolute;
    top: 0;
    left: 0;
  width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    background: conic-gradient(var(--primary-gold), var(--primary-blue), var(--primary-green), var(--primary-gold));
    animation: ring-pulse 2s ease-in-out infinite;
}

.ring-segment {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: segment-orbit 8s linear infinite;
}

.ring-segment:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.ring-segment:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.ring-segment:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

.ring-segment:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 6s;
}

/* Animations */
@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes badge-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

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

@keyframes particle-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

@keyframes particle-large-float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(10px); opacity: 0.6; }
    50% { transform: translateY(-20px) translateX(-10px); opacity: 0.8; }
    75% { transform: translateY(-40px) translateX(5px); opacity: 0.4; }
}

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

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

@keyframes segment-orbit {
    0% { transform: rotate(0deg) translateX(90px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(90px) rotate(-360deg); }
}

/* Modern Quick Play Section */
.quick-play-modern {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 60px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 25px 80px rgba(255, 215, 0, 0.15);
}

.quick-play-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(9, 93, 181, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.play-container {
    position: relative;
    z-index: 2;
}

/* Play Header */
.play-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-gold), #d97706);
    color: var(--dark-bg);
    padding: 12px 24px;
    border-radius: 25px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.header-badge i {
  font-size: 1.1rem;
}

.play-header h3 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-text);
    line-height: 1.2;
}

.play-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Play Steps */
.play-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.step-item {
    flex: 1;
  display: flex;
  flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.step-visual {
    position: relative;
    margin-bottom: 25px;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
}

.step-item:hover .step-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.step-line {
    position: absolute;
    top: 40px;
    left: 100%;
    width: calc(100% - 80px);
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
    z-index: 1;
}

.step-item:last-child .step-line {
    display: none;
}

.step-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
  margin-bottom: 10px;
    color: var(--light-text);
}

.step-info p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Play Summary */
.play-summary {
    background: linear-gradient(135deg, var(--primary-gold), #d97706);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.play-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="summary-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23summary-pattern)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.summary-text {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.summary-text h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin: 0;
    line-height: 1.4;
}

.summary-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.btn-play-now {
    background: var(--dark-bg);
    color: var(--primary-gold);
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-play-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    color: var(--primary-gold);
}

.btn-login-now {
    background: rgba(255, 255, 255, 0.2);
    color: var(--dark-bg);
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.btn-login-now:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: var(--dark-bg);
}

/* Play Features */
.play-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-pill {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 12px 24px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.feature-pill:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.feature-pill i {
  font-size: 1.1rem;
}


/* Enhanced FAQ Section */
.faq {
    margin: 80px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 50%, var(--dark-bg) 100%);
    border-radius: 30px;
    padding: 60px;
  position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(9, 93, 181, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-text);
    background: linear-gradient(135deg, var(--primary-gold), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
  margin: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 20px;
    margin-bottom: 20px;
    border: 2px solid transparent;
    transition: var(--transition);
  overflow: hidden;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-blue));
  opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.faq-item:hover::before {
    opacity: 0.05;
}

.faq-item:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 30px 35px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--light-text);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-question i {
    font-size: 1.3rem;
    color: var(--primary-gold);
    transition: var(--transition);
    margin-left: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-item.active .faq-question {
    background: rgba(255, 215, 0, 0.08);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-answer {
    padding: 0 35px 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    position: relative;
    z-index: 2;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 35px 30px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
}

/* Footer */
.footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding: 50px 0;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 0 20px;
}

.footer-logo img {
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-copy p {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .navbar {
    padding: 20px 40px;
  }
  
  .hero {
    min-height: 500px;
    padding: 40px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-image-slider {
    margin: 20px 0;
  }
  
  .slider-container {
    height: 350px;
  }
  
  .slider-controls {
    padding: 0 15px;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .hero-feature-card {
    padding: 40px;
  }
  
  .hero-feature-content h3 {
    font-size: 2rem;
  }
  
  .hero-feature-visual {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin-top: 30px;
    display: flex;
    justify-content: center;
  }
  
  .casino-wheel {
    width: 220px;
    height: 220px;
  }
  
  .segment-icon {
    font-size: 1.4rem;
  }
  
  .segment-text {
    font-size: 0.6rem;
  }
  
  .wheel-center {
    width: 60px;
    height: 60px;
  }
  
  .center-logo {
    font-size: 1.5rem;
  }
  
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .live-gaming-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .studio-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .dealer-avatar-main {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .casino-table {
    width: 150px;
    height: 90px;
  }
  
  .studio-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .live-games-showcase {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .live-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .trust-indicators {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .bonus-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .announcement-content {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .navbar-menu {
    gap: 20px;
  }

  .navbar .auth-buttons {
    margin-top: 10px;
    width: 100%;
    gap: 20px;
    justify-content: center;
  }

  .auth-btn img {
    height: 35px;
  }

  .hero {
    min-height: 450px;
    padding: 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-image-slider {
    margin: 20px 0;
  }
  
  .slider-container {
    height: 300px;
  }
  
  .slider-controls {
    padding: 0 10px;
  }
  
  .slider-btn {
    width: 35px;
    height: 35px;
  }
  
  .slider-btn i {
    font-size: 16px;
  }
  
  .slider-dots {
    bottom: 20px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 20px;
  }
  
  .section-header h2,
  .section-header h3 {
    font-size: 2rem;
  }
  
  .games-showcase {
    grid-template-columns: 1fr;
  }
  
  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .live-gaming-section {
    padding: 30px 20px;
  }
  
  .dealer-studio {
    width: 150px;
    height: 150px;
  }
  
  .dealer-face {
    font-size: 3rem;
  }
  
  .hero-feature-card {
    padding: 30px 20px;
  }
  
  .hero-feature-content h3 {
    font-size: 1.8rem;
  }
  
  .game-showcase {
    flex-direction: column;
    gap: 15px;
  }
  
  .casino-wheel {
    width: 180px;
    height: 180px;
  }
  
  .segment-icon {
    font-size: 1.2rem;
  }
  
  .segment-text {
    font-size: 0.5rem;
  }
  
  .wheel-center {
    width: 50px;
    height: 50px;
  }
  
  .center-logo {
    font-size: 1.2rem;
  }
  
  .sparkle {
    font-size: 1rem;
  }
  
  .feature-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
  
  .announcement-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .announcement-marquee {
    height: auto;
    min-height: 24px;
  }
  
  .marquee-text {
    animation-duration: 15s;
  }
  
  .marquee-text span {
    font-size: 13px;
    padding-right: 40px;
  }
  
  .announcement-text {
    font-size: 13px;
  }
  
  .announcement-cta {
    justify-content: center;
  }
  
  /* Security & Trust Section Tablet */
  .feature-grid { 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 25px; 
  }
  
  .security-card { 
    padding: 35px; 
  }
  
  .banking-section { 
    padding: 40px; 
  }
  
  .banking-content { 
    gap: 40px; 
  }
  
  .banking-text h3 { 
    font-size: 2rem; 
  }
  
  /* Games Experience Section Tablet */
  .games-experience { 
    padding: 40px; 
  }
  
  .game-categories-grid { 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 25px; 
  }
  
  .game-category-card { 
    padding: 35px; 
  }
  
  .category-content h3 { 
    font-size: 1.8rem; 
  }
  
  .trust-commitment-interactive { 
    padding: 40px; 
  }
  
  .trust-hero { 
    flex-direction: column; 
    text-align: center; 
    gap: 30px; 
  }
  
  .trust-badge-large { 
    padding: 25px; 
  }
  
  .badge-icon { 
    width: 70px; 
    height: 70px; 
    font-size: 2rem; 
  }
  
  .badge-title { 
    font-size: 1.8rem; 
  }
  
  .trust-content h3 { 
    font-size: 2.4rem; 
  }
  
  .trust-features-interactive { 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px; 
  }
  
  .feature-card-interactive { 
    padding: 35px; 
  }
  
  .icon-circle { 
    width: 80px; 
    height: 80px; 
    font-size: 2rem; 
  }
  
  .trust-wheel { 
    width: 150px; 
    height: 150px; 
  }
  
  .wheel-center { 
    width: 60px; 
    height: 60px; 
    font-size: 2rem; 
  }
  
  .quick-play-modern { 
    padding: 40px; 
  }
  
  .play-header h3 { 
    font-size: 2.4rem; 
  }
  
  .play-steps { 
    flex-direction: column; 
    gap: 40px; 
  }
  
  .step-item { 
    padding: 0; 
  }
  
  .step-line { 
    display: none; 
  }
  
  .step-circle { 
    width: 70px; 
    height: 70px; 
    font-size: 1.8rem; 
  }
  
  .summary-actions { 
    flex-direction: column; 
    gap: 15px; 
  }
  
  .play-features { 
    gap: 20px; 
  }
  
  .quick-play-text h3 { 
    font-size: 2.2rem; 
  }
  
  .faq { 
    padding: 40px; 
  }
  
  .section-header h2 { 
    font-size: 2.4rem; 
  }
  
  .faq-question { 
    padding: 25px 30px; 
  }
  
  .faq-question h3 { 
    font-size: 1.2rem; 
  }
  
  .faq-answer { 
    padding: 0 30px 25px; 
  }
  
  .faq-item.active .faq-answer { 
    padding: 0 30px 25px; 
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 400px;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-image-slider {
    margin: 15px 0;
  }
  
  .slider-container {
    height: 250px;
  }
  
  .slider-btn {
    width: 30px;
    height: 30px;
  }
  
  .slider-btn i {
    font-size: 14px;
  }
  
  .slider-dots .dot {
    width: 10px;
    height: 10px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .section-header h2,
  .section-header h3 {
    font-size: 1.8rem;
  }
  
  .games,
  .faq {
    padding: 30px 20px;
  }
  
  .bonus-card,
  .faq-question {
    padding: 20px;
  }

  .announcement-bar {
    padding: 10px 0;
  }
  
  .marquee-text span {
    font-size: 12px;
    padding-right: 30px;
  }
  
  .announcement-text {
    font-size: 12px;
  }
  
  .btn-announcement {
    padding: 6px 12px;
    font-size: 11px;
  }
  
  .auth-btn img {
    height: 30px;
  }
  
  .live-gaming-header h3 {
    font-size: 2rem;
  }
  
  .live-studio-card {
    padding: 20px;
  }
  
  .dealer-image {
    font-size: 3rem;
    width: 60px;
    height: 60px;
  }
  
  .casino-table {
    width: 120px;
    height: 70px;
  }
  
  .table-logo {
    font-size: 12px;
  }
  
  .live-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .live-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-item {
    padding: 20px;
  }
  
  /* Security & Trust Section Mobile */
  .feature-grid { 
    grid-template-columns: 1fr; 
    gap: 20px; 
  }
  
  .security-card { 
    padding: 30px; 
  }
  
  .card-content h3 { 
    font-size: 1.6rem; 
  }
  
  .banking-section { 
    padding: 30px; 
  }
  
  .banking-content { 
    grid-template-columns: 1fr; 
    gap: 30px; 
  }
  
  .banking-text h3 { 
    font-size: 1.8rem; 
  }
  
  .bank-logos { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px; 
  }
  
  .bank-logo { 
    padding: 15px;
    font-size: 1rem; 
  }
  
  /* Games Experience Section Mobile */
  .games-experience { 
    padding: 30px 20px; 
    margin: 60px 0; 
  }
  
  .game-categories-grid { 
    grid-template-columns: 1fr; 
    gap: 20px; 
  }
  
  .game-category-card { 
    padding: 30px 20px; 
  }
  
  .category-content h3 { 
    font-size: 1.6rem; 
  }
  
  .category-stats { 
    flex-direction: column;
    gap: 15px; 
    text-align: center; 
  }
  
  .game-image-container { 
    height: 200px; 
  }
  
  .play-indicator { 
    width: 50px; 
    height: 50px; 
    font-size: 1.2rem; 
  }
  
  .live-indicator { 
    padding: 4px 8px; 
    font-size: 0.7rem; 
  }
  
  .trust-commitment-interactive { 
    padding: 30px 20px; 
  }
  
  .trust-badge-large { 
    padding: 20px; 
    flex-direction: column; 
    text-align: center; 
    gap: 15px; 
  }
  
  .badge-icon { 
    width: 60px; 
    height: 60px; 
    font-size: 1.8rem; 
  }
  
  .badge-title { 
    font-size: 1.5rem; 
  }
  
  .badge-subtitle { 
    font-size: 0.9rem; 
  }
  
  .trust-content h3 { 
    font-size: 2rem; 
  }
  
  .trust-content p { 
    font-size: 1rem; 
  }
  
  .trust-features-interactive { 
    grid-template-columns: 1fr; 
    gap: 20px; 
  }
  
  .feature-card-interactive { 
    padding: 25px; 
  }
  
  .icon-circle { 
    width: 70px; 
    height: 70px; 
    font-size: 1.8rem; 
  }
  
  .feature-text h4 { 
    font-size: 1.4rem; 
  }
  
  .feature-stats { 
    flex-direction: column; 
    gap: 15px; 
  }
  
  .goal-content-interactive { 
    flex-direction: column; 
    text-align: center; 
    gap: 30px; 
  }
  
  .goal-text h4 { 
    font-size: 1.8rem; 
  }
  
  .goal-text p { 
    font-size: 1rem; 
  }
  
  .goal-metrics { 
    flex-direction: column; 
    gap: 20px; 
  }
  
  .trust-wheel { 
    width: 120px; 
    height: 120px; 
  }
  
  .wheel-center { 
    width: 50px; 
    height: 50px; 
    font-size: 1.5rem; 
  }
  
  .quick-play-enhanced { 
    padding: 30px 20px; 
  }
  
  .hero-content h3 { 
    font-size: 2rem; 
  }
  
  .hero-content p { 
    font-size: 1.1rem; 
  }
  
  .play-button-large { 
    width: 100px; 
    height: 100px; 
  }
  
  .button-icon { 
    font-size: 2rem; 
  }
  
  .steps-header h4 { 
    font-size: 1.8rem; 
  }
  
  .steps-header p { 
    font-size: 1rem; 
  }
  
  .steps-grid { 
    grid-template-columns: 1fr; 
    gap: 15px; 
  }
  
  .step-card { 
    padding: 20px; 
  }
  
  .step-number { 
    width: 40px; 
    height: 40px; 
    font-size: 1.2rem; 
  }
  
  .step-icon { 
    width: 50px; 
    height: 50px; 
    font-size: 1.5rem; 
  }
  
  .step-content h5 { 
    font-size: 1.2rem; 
  }
  
  .step-content p { 
    font-size: 0.9rem; 
  }
  
  .cta-section { 
    padding: 30px 20px; 
  }
  
  .cta-text h4 { 
    font-size: 1.8rem; 
  }
  
  .cta-text p { 
    font-size: 1rem; 
  }
  
  .cta-buttons { 
    flex-direction: column; 
    gap: 15px; 
  }
  
  .cta-features { 
    gap: 20px; 
  }
  
  .cta-features .feature-item { 
    font-size: 0.9rem; 
  }

  .faq {
    padding: 30px 20px; 
  }
  
  .section-header h2 { 
    font-size: 2rem; 
  }
  
  .section-header p { 
    font-size: 1rem; 
  }
  
  .faq-question { 
    padding: 20px 25px; 
  }
  
  .faq-question h3 { 
    font-size: 1.1rem; 
  }
  
  .faq-question i { 
    font-size: 1.1rem; 
  }
  
  .faq-answer { 
    padding: 0 25px 20px; 
  }
  
  .faq-item.active .faq-answer { 
    padding: 0 25px 20px; 
  }
  
  .faq-answer p { 
    font-size: 1rem; 
  }
  
  .quick-play-text h3 { 
    font-size: 2rem; 
  }
  
  .quick-play-features { 
    flex-direction: column;
    gap: 15px; 
  }
}