@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.0/font/bootstrap-icons.css');

:root {
  --primary-color: #00D4FF;
  --secondary-color: #1A1A1A;
  --accent-color: #FF6B35;
  --success-color: #00FF88;
  --warning-color: #FFB800;
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B0;
  --text-muted: #808080;
  --bg-primary: #0A0A0A;
  --bg-secondary: #1A1A1A;
  --bg-tertiary: #2A2A2A;
  --border-color: #333333;
  --gradient-primary: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
  --gradient-secondary: linear-gradient(135deg, #FF6B35 0%, #CC4A00 100%);
  --gradient-accent: linear-gradient(135deg, #00FF88 0%, #00CC6A 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #1A1A1A;
  border-bottom: 1px solid #333333;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-image {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 0 10px #00FF00) drop-shadow(0 0 20px #00FF00) drop-shadow(0 0 30px #00FF00);
  animation: neon-glow 2s ease-in-out infinite alternate;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #00FF00;
  text-shadow: 0 0 10px #00FF00, 0 0 20px #00FF00, 0 0 30px #00FF00;
  animation: neon-glow 2s ease-in-out infinite alternate;
}

@keyframes neon-glow {
  from {
    filter: drop-shadow(0 0 10px #00FF00) drop-shadow(0 0 20px #00FF00) drop-shadow(0 0 30px #00FF00);
  }
  to {
    filter: drop-shadow(0 0 20px #00FF00) drop-shadow(0 0 30px #00FF00) drop-shadow(0 0 40px #00FF00);
  }
}

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

.navbar-menu li a {
  color: #CCCCCC;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-menu li a:hover {
  color: #FFFFFF;
}

.navbar-menu li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00FF00;
  transition: width 0.3s ease;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-login {
  background: #333333;
  color: #FFFFFF;
  border: 1px solid #555555;
}

.btn-login:hover {
  background: #444444;
  border-color: #666666;
}

.btn-register {
  background: #FF6B35;
  color: #FFFFFF;
}

.btn-register:hover {
  background: #E55A2B;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/background.jpg') center/cover;
  opacity: 0.1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
}

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

.floating-card {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 20px;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.card-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

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

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  padding: 8px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary-color);
}

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

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-icon {
  font-size: 16px;
}

.hero-visual {
  position: relative;
  height: 500px;
}

.game-showcase {
  position: relative;
  width: 100%;
  height: 100%;
}

.game-preview {
  position: absolute;
  width: 300px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: all 0.5s ease;
  opacity: 0;
  transform: scale(0.8);
}

.game-preview.active {
  opacity: 1;
  transform: scale(1);
  z-index: 3;
}

.game-preview:nth-child(1) {
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.game-preview:nth-child(2) {
  top: 50px;
  right: 0;
  animation-delay: 1s;
}

.game-preview:nth-child(3) {
  bottom: 0;
  left: 50px;
  animation-delay: 2s;
}

.game-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.game-title {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.game-rtp {
  font-size: 0.9rem;
  color: var(--primary-color);
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
  -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;
}

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

.feature-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--text-primary);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Bonus Section */
.bonus-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

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

.main-bonus-card {
  background: var(--gradient-primary);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.bonus-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.bonus-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.bonus-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.bonus-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bonus-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.bonus-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

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

.bonus-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.bonus-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Games Section */
.games-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

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

.game-category {
  background: var(--bg-tertiary);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--border-color);
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.category-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.game-count {
  background: var(--gradient-primary);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.game-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.game-image {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

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

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

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.game-info h4 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.rtp {
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 500;
}

.play-btn {
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-sm);
}

.live-casino-preview {
  display: flex;
  justify-content: center;
}

.live-table {
  position: relative;
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  overflow: hidden;
}

.live-table img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.live-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  color: white;
}

.live-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.live-status {
  color: var(--success-color);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

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

.testimonial-card {
  background: var(--bg-tertiary);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.testimonial-content {
  margin-bottom: 20px;
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

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

.author-info h4 {
  color: var(--text-primary);
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}

.author-info span {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Statistics Section */
.stats-section {
  padding: 80px 0;
  background: var(--gradient-primary);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Live Casino Section */
.live-casino-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.live-casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.live-game-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.live-game-image {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.game-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
}

.live-game-card:hover .game-preview-image {
  transform: scale(1.05);
}

/* Fallback for missing images */
.live-game-image:not(:has(img)) {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-game-image:not(:has(img))::before {
  content: '🎰';
  font-size: 3rem;
  opacity: 0.5;
}

.live-indicator {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #FF0000;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

.viewer-count {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.live-game-info {
  padding: 25px;
}

.live-game-info h3 {
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.live-game-info p {
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.live-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.feature-tag {
  background: var(--primary-color);
  color: var(--bg-primary);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.live-casino-cta {
  text-align: center;
  margin-top: 40px;
}

/* Promotions Section */
.promotions-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

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

.promo-card {
  background: var(--bg-tertiary);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.promo-card.featured {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, rgba(255, 107, 53, 0.1) 100%);
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.promo-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--accent-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.promo-content h3 {
  color: var(--text-primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.promo-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.promo-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.promo-terms {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.promo-terms span {
  background: var(--bg-secondary);
  color: var(--text-muted);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.promo-cta {
  text-align: center;
}

/* Security Section */
.security-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

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

.security-card {
  background: var(--bg-secondary);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.security-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.security-card h3 {
  color: var(--text-primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

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

/* Mobile App Section */
.mobile-app-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.mobile-app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mobile-features {
  margin: 40px 0;
}

.mobile-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.mobile-feature .feature-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.mobile-feature .feature-content h3 {
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

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

.mobile-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: #1A1A1A;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-secondary);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.app-interface {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

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

.app-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-color);
}

.balance {
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
}

.app-games {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  flex: 1;
  margin-bottom: 30px;
}

.game-tile {
  background: var(--bg-tertiary);
  border-radius: 15px;
  height: 80px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.game-tile.active {
  border-color: var(--primary-color);
  background: rgba(0, 212, 255, 0.1);
}

.app-bottom {
  display: flex;
  justify-content: space-around;
  background: var(--bg-tertiary);
  padding: 15px;
  border-radius: 15px;
}

.nav-item {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  transition: color 0.3s ease;
}

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

/* Winners Section */
.winners-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.winner-card {
  background: var(--bg-tertiary);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.winner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.winner-avatar {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 15px;
}

.winner-info {
  text-align: center;
  margin-bottom: 15px;
}

.winner-info h3 {
  color: var(--text-primary);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.winner-info p {
  color: var(--text-muted);
  margin: 0 0 10px 0;
  font-size: 0.9rem;
}

.win-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--success-color);
  margin-bottom: 5px;
}

.win-game {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.win-time {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  background: var(--bg-secondary);
  padding: 5px 10px;
  border-radius: 10px;
  display: inline-block;
  width: 100%;
}

.winners-cta {
  text-align: center;
  margin-top: 40px;
}

.winners-cta p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Community Section */
.community-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

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

.community-card {
  background: var(--bg-secondary);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.community-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.community-card h3 {
  color: var(--text-primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

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

.community-stats {
  background: var(--bg-tertiary);
  padding: 10px 15px;
  border-radius: 15px;
  margin-top: 15px;
}

.community-stats span {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.community-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-highlight {
  background: var(--bg-secondary);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.feature-highlight h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

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

.faq-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 30px 25px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

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

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.footer-copy {
  text-align: right;
}

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

.footer-copy a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-visual {
    height: 300px;
  }
  
  .bonus-showcase {
    grid-template-columns: 1fr;
  }
  
  .games-showcase {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .bonus-grid {
    grid-template-columns: 1fr;
  }
  
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .bonus-main-card {
    padding: 30px 20px;
  }
  
  .bonus-amount {
    font-size: 2rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeInUp 0.6s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SERP Content Navigation */
.serp-nav-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  color: white;
}

.serp-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.serp-nav-card {
  background: linear-gradient(135deg, #2D2D2D 0%, #3A3A3A 100%);
  padding: 30px;
  border-radius: 15px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

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

.serp-nav-card:hover::before {
  left: 100%;
}

.serp-nav-card:hover {
  transform: translateY(-5px);
  border-color: #00D4FF;
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.serp-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.serp-nav-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #00D4FF;
}

.serp-nav-card p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.serp-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #00D4FF;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Quick Access Panel */
.quick-access-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.quick-access-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.quick-access-card:hover {
  transform: translateY(-5px);
  border-color: #00D4FF;
}

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

.access-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0;
}

.access-badge {
  background: #00D4FF;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.access-badge.live {
  background: #FF6B35;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

.access-content {
  margin-bottom: 25px;
}

.access-step {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.step-number {
  background: #00D4FF;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 15px;
}

.step-text {
  color: #555;
  font-weight: 500;
}

.jackpot-display {
  text-align: center;
}

.jackpot-amount {
  font-size: 2rem;
  font-weight: 800;
  color: #00D4FF;
  margin-bottom: 10px;
}

.jackpot-label {
  color: #666;
  font-size: 0.9rem;
}

.transaction-list {
  space-y: 10px;
}

.transaction-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.transaction-item:last-child {
  border-bottom: none;
}

.tx-type {
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tx-type.deposit {
  background: #d4edda;
  color: #155724;
}

.tx-type.withdraw {
  background: #f8d7da;
  color: #721c24;
}

.tx-amount {
  font-weight: 600;
  color: #1A1A1A;
}

.tx-game {
  color: #666;
  font-size: 0.9rem;
}

.access-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.access-btn:hover {
  background: linear-gradient(135deg, #0099CC 0%, #007AA3 100%);
  transform: translateY(-2px);
}

/* Game Categories Section */
.game-categories-section {
  padding: 80px 0;
  background: white;
}

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

.category-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: #00D4FF;
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.category-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.category-count {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00D4FF;
  margin-bottom: 15px;
}

.category-card p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.category-btn {
  display: inline-block;
  background: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category-btn:hover {
  background: linear-gradient(135deg, #0099CC 0%, #007AA3 100%);
  transform: translateY(-2px);
}

/* Featured Games Section */
.featured-games-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  color: white;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.game-card {
  background: linear-gradient(135deg, #2D2D2D 0%, #3A3A3A 100%);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: #00D4FF;
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

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

.game-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 212, 255, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.game-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: white;
}

.rtp {
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  color: white;
}

.play-btn {
  background: #00D4FF;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: #0099CC;
  transform: translateY(-2px);
}

/* Payment Methods Section */
.payment-methods-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.payment-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.payment-card:hover {
  transform: translateY(-5px);
  border-color: #00D4FF;
}

.payment-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.payment-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.payment-card p {
  color: #666;
  margin-bottom: 15px;
}

.payment-time {
  background: #00D4FF;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.payment-cta {
  text-align: center;
  margin-top: 40px;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .navbar-container {
    padding: 0 15px;
  }
  
  .navbar-menu {
    display: none;
  }
  
  .logo-text {
    font-size: 20px;
  }
  
  .logo-image {
    height: 28px;
  }
  
  .btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .serp-nav-grid {
    grid-template-columns: 1fr;
  }
  
  .quick-access-grid {
    grid-template-columns: 1fr;
  }
  
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .payment-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .live-casino-grid {
    grid-template-columns: 1fr;
  }
  
  .promotions-grid {
    grid-template-columns: 1fr;
  }
  
  .security-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .mobile-app-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .winners-grid {
    grid-template-columns: 1fr;
  }
  
  .community-grid {
    grid-template-columns: 1fr;
  }
  
  .community-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .serp-nav-card {
    padding: 20px;
  }
  
  .serp-nav-card h3 {
    font-size: 1.1rem;
  }
  
  .quick-access-card {
    padding: 20px;
  }
  
  .category-card {
    padding: 20px;
  }
  
  .payment-card {
    padding: 20px;
  }
  
  .jackpot-amount {
    font-size: 1.5rem;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .live-game-card {
    margin-bottom: 20px;
  }
  
  .promo-card {
    padding: 20px;
  }
  
  .promo-amount {
    font-size: 1.5rem;
  }
  
  .security-card {
    padding: 20px;
  }
  
  .phone-mockup {
    width: 250px;
    height: 500px;
  }
  
  .winner-card {
    padding: 20px;
  }
  
  .win-amount {
    font-size: 1.5rem;
  }
  
  .community-card {
    padding: 20px;
  }
  
  .mobile-cta {
    flex-direction: column;
    align-items: center;
  }
}