/* Smart Home Theme - FULLHOUSE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #f6fbff 0%, #e3f0f7 100%);
  color: #222;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 191, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 200, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 191, 255, 0.04) 0%, transparent 50%);
  z-index: -1;
}

/* Section Titles and Subtitles */
.section-title, .hero-title, .category-title, .feature-card h3, .promo-card h3, .stream-info h3 {
  color: #0a2540 !important;
  text-shadow: none !important;
}

.section-subtitle, .hero-subtitle, .feature-card p, .promo-card p, .stream-info p, .stat-label, .faq-answer, .footer-about p, .footer-brand p, .modern-footer .footer-brand p {
  color: #333 !important;
  text-shadow: none !important;
}

/* General text */
p, li, .stat-number, .stat-label, .faq-question, .faq-answer, .footer-links ul li a, .footer-support .support-item, .contact-item, .user-info h4, .testimonial-card p {
  color: #222 !important;
  text-shadow: none !important;
}

/* Buttons */
.btn-primary, .btn-secondary, .promo-btn, .play-btn {
  color: #fff !important;
  text-shadow: none !important;
}

.btn-primary:hover, .btn-secondary:hover, .promo-btn:hover, .play-btn:hover {
  color: #0a2540 !important;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid #00bfff;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #00bfff;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.08);
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00bfff, #00ffc8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.logo:hover::after {
  transform: scaleX(1);
}

.crown-icon, .diamond-icon {
  font-size: 2rem;
  color: #00bfff;
  filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.2));
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #00bfff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  background: none;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #00bfff, #00ffc8);
  transition: left 0.3s ease;
  z-index: -1;
}

.nav-links a:hover::before,
.nav-links a.active::before {
  left: 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-color: #00bfff;
  background: linear-gradient(90deg, #00bfff 0%, #00ffc8 100%);
  box-shadow: 0 8px 25px rgba(0, 191, 255, 0.08);
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #00bfff;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 191, 255, 0.2);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e3f0f7 0%, #f6fbff 100%);
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 3rem;
}

.hero-left {
  flex: 1;
  z-index: 2;
}

.hero-right {
  flex: 1;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #00bfff, #00ffc8);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.08);
  text-shadow: none;
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00bfff, #00ffc8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 191, 255, 0.08);
}

.highlight-text {
  background: linear-gradient(135deg, #00bfff, #00ffc8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.2rem 2rem;
  box-shadow: 0 2px 12px rgba(0, 191, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  font-size: 2rem;
  color: #00bfff;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00bfff;
}

.stat-label {
  font-size: 1rem;
  color: #333;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #00bfff 0%, #00ffc8 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 191, 255, 0.13);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(.4,2,.6,1);
  letter-spacing: 1px;
  margin-right: 1rem;
}

.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #00ffc8 0%, #00bfff 100%);
  color: #00bfff;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 191, 255, 0.18);
  outline: none;
}

.btn-secondary {
  display: inline-block;
  background: linear-gradient(90deg, #fff 0%, #e3f0f7 100%);
  color: #00bfff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border: 2px solid #00bfff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 191, 255, 0.10);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(.4,2,.6,1);
  letter-spacing: 1px;
}

.btn-secondary:hover, .btn-secondary:focus {
  background: linear-gradient(90deg, #00bfff 0%, #fff 100%);
  color: #fff;
  border-color: #00ffc8;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 255, 200, 0.18);
  outline: none;
}

/* Games Section */
.games-section {
  padding: 7rem 2rem 5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.98));
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00bfff;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #00bfff, #00ffc8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2rem;
}

.games-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}

.game-category {
  flex: 1 1 350px;
  min-width: 320px;
  max-width: 400px;
}

.category-title {
  font-size: 1.3rem;
  color: #00bfff;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.game-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 191, 255, 0.08);
  padding: 1.2rem 1rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
  position: relative;
  overflow: hidden;
  border: 2px solid #e3f0f7;
  color: #222 !important;
}

.game-item h4 {
  color: #0a2540 !important;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem 0;
}

.game-item p {
  color: #333 !important;
  font-size: 1rem;
  margin-bottom: 0;
}

.game-item:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(0, 191, 255, 0.18);
  border: 2px solid #00bfff;
  color: #222 !important;
}

.game-item:hover h4, .game-item:hover p {
  color: #0a2540 !important;
}

.game-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.game-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1);
  box-shadow: 0 4px 16px rgba(0,191,255,0.07);
  background: #f6fbff;
}

.game-item:hover .game-image img {
  transform: scale(1.07);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(246, 251, 255, 0.13));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(.4,2,.6,1);
}

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

.play-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00ffc8 0%, #00bfff 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.7rem 1.7rem;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 255, 200, 0.13);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(.4,2,.6,1);
  letter-spacing: 1px;
}

.play-btn:hover, .play-btn:focus {
  background: linear-gradient(90deg, #00bfff 0%, #00ffc8 100%);
  color: #fff;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 191, 255, 0.18);
  outline: none;
}

/* Casino Section */
.casino-section {
  padding: 7rem 2rem 5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.98));
}

/* Features Section */
.features-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(246, 251, 255, 0.05) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid rgba(0, 191, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 191, 255, 0.2);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 191, 255, 0.4);
  border-color: rgba(0, 191, 255, 0.5);
}

.feature-card.featured {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(246, 251, 255, 0.2));
  border-color: rgba(0, 191, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 191, 255, 0.3);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #00bfff;
  filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.8));
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00bfff;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.feature-card p {
  color: #333;
  line-height: 1.6;
  opacity: 0.8;
  font-weight: 500;
}

.feature-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #00bfff, #00ffc8);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
}

.rating-summary {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  border: 3px solid rgba(0, 191, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 191, 255, 0.2);
}

.rating-stars {
  font-size: 2.5rem;
  color: #00bfff;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.8));
}

.rating-text {
  font-size: 1.2rem;
  color: #00bfff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  border: 3px solid rgba(0, 191, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 191, 255, 0.2);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 191, 255, 0.4);
  border-color: rgba(0, 191, 255, 0.5);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(246, 251, 255, 0.2));
  border-color: rgba(0, 191, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 191, 255, 0.3);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00bfff, #00ffc8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 191, 255, 0.4);
}

.user-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00bfff;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.user-rating {
  color: #00bfff;
  font-size: 0.9rem;
  filter: drop-shadow(0 0 5px rgba(0, 191, 255, 0.5));
}

.testimonial-card p {
  color: #333;
  line-height: 1.6;
  font-style: italic;
  opacity: 0.9;
  font-weight: 500;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #00bfff, #00ffc8);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(246, 251, 255, 0.05) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  aspect-ratio: 1;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 191, 255, 0.2);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 191, 255, 0.4);
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 251, 255, 0.9));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(246, 251, 255, 0.2));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00bfff, #00ffc8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

.cta-content p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-royal.large,
.btn-noble.large {
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  border-radius: 30px;
}

/* Button Styles */
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #00bfff 0%, #00ffc8 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 191, 255, 0.13);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(.4,2,.6,1);
  letter-spacing: 1px;
  margin-right: 1rem;
}

.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #00ffc8 0%, #00bfff 100%);
  color: #fff;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 191, 255, 0.18);
  outline: none;
}

.btn-secondary {
  display: inline-block;
  background: linear-gradient(90deg, #fff 0%, #e3f0f7 100%);
  color: #00bfff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border: 2px solid #00bfff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 191, 255, 0.10);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(.4,2,.6,1);
  letter-spacing: 1px;
}

.btn-secondary:hover, .btn-secondary:focus {
  background: linear-gradient(90deg, #00bfff 0%, #fff 100%);
  color: #fff;
  border-color: #00ffc8;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 255, 200, 0.18);
  outline: none;
}

.play-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00ffc8 0%, #00bfff 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.7rem 1.7rem;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 255, 200, 0.13);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(.4,2,.6,1);
  letter-spacing: 1px;
}

.play-btn:hover, .play-btn:focus {
  background: linear-gradient(90deg, #00bfff 0%, #00ffc8 100%);
  color: #fff;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 191, 255, 0.18);
  outline: none;
}

/* Footer */
.royal-footer {
  background: rgba(255, 255, 255, 0.95);
  border-top: 3px solid rgba(0, 191, 255, 0.3);
  padding: 3rem 2rem 1rem;
  backdrop-filter: blur(20px);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #00bfff;
  text-decoration: none;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.footer-about p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(0, 191, 255, 0.1);
  border: 2px solid rgba(0, 191, 255, 0.3);
  border-radius: 50%;
  color: #00bfff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: linear-gradient(135deg, #00bfff, #00ffc8);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.4);
}

.footer-links h4,
.contact-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-links ul li a:hover {
  color: #00bfff;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.contact-icon {
  color: #00bfff;
}

.footer-bottom {
  border-top: 2px solid rgba(0, 191, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Animations */
@keyframes casinoGlow {
  0% { filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8)); }
  100% { filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1)); }
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-container, .games-showcase, .live-showcase, .promotions-grid, .footer-container {
    max-width: 100vw;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .hero-right, .hero-left {
    width: 100%;
    max-width: 100%;
  }
  .games-showcase {
    flex-direction: column;
    align-items: stretch;
  }
  .game-category {
    max-width: 100%;
    min-width: 0;
  }
  .games-grid {
    grid-template-columns: 1fr 1fr;
  }
  .live-showcase, .live-streams {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .promotions-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    color: #00bfff;
    background: none;
    border: none;
    box-shadow: none;
  }
  .hero-section {
    padding: 6rem 1rem 2rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .games-showcase {
    gap: 1.5rem;
  }
  .games-grid {
    grid-template-columns: 1fr;
  }
  .live-showcase, .live-streams {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .stream-card, .promo-card, .game-item {
    min-width: 0;
    max-width: 100%;
  }
  .promotions-grid {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section, .casino-section, .live-section, .promotions-section {
    padding: 3rem 0.5rem;
  }
  .hero-title, .section-title {
    font-size: 1.3rem;
  }
  .stat-card {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
  .game-item, .stream-card, .promo-card {
    padding: 0.7rem 0.5rem 1rem;
  }
  .game-image img, .stream-preview img {
    height: 80px;
  }
  .footer-container {
    padding: 0 0.5rem;
  }
} 

/* Live Casino Section */
.live-section {
  padding: 6rem 2rem 4rem;
  background: #f6fbff;
}

.live-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.live-streams {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stream-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0, 191, 255, 0.08);
  padding: 1.2rem 1rem 1.5rem;
  text-align: left;
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
  position: relative;
  overflow: hidden;
  min-width: 320px;
  max-width: 350px;
  flex: 1 1 320px;
  border: 2px solid #e3f0f7;
  color: #222 !important;
  margin-bottom: 1.5rem;
}

.stream-card.featured {
  border: 2px solid #00bfff;
  box-shadow: 0 8px 32px rgba(0, 191, 255, 0.18);
}

.stream-card:hover {
  border: 2px solid #00bfff;
  box-shadow: 0 8px 32px rgba(0, 191, 255, 0.18);
  transform: translateY(-6px) scale(1.03);
}

.stream-preview {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #f6fbff;
}

.stream-preview img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1);
  filter: none !important;
  background: #f6fbff;
}

.live-indicator {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(90deg, #00bfff 0%, #00ffc8 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 191, 255, 0.13);
  letter-spacing: 1px;
}

.viewer-count {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 191, 255, 0.85);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 191, 255, 0.13);
  letter-spacing: 1px;
}

.stream-info h3 {
  color: #0a2540 !important;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0.2rem 0 0.5rem 0;
}

.stream-info p {
  color: #333 !important;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* Promotions Section */
.promotions-section {
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(246, 251, 255, 0.05) 100%);
}

.promotions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.promo-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0, 191, 255, 0.08);
  padding: 2rem 1.5rem 2.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
  position: relative;
  overflow: hidden;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 260px;
}

.promo-card.welcome {
  border: 2px solid #00bfff;
  box-shadow: 0 8px 32px rgba(0, 191, 255, 0.18);
}

.promo-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #00bfff;
}

.promo-card h3 {
  color: #00bfff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.promo-card p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.promo-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00bfff 0%, #00ffc8 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.7rem 1.7rem;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 191, 255, 0.13);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(.4,2,.6,1);
  letter-spacing: 1px;
}

.promo-btn:hover, .promo-btn:focus {
  background: linear-gradient(90deg, #00ffc8 0%, #00bfff 100%);
  color: #fff;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 191, 255, 0.18);
  outline: none;
}

/* Modern Footer */
.modern-footer {
  background: linear-gradient(135deg, #f6fbff 0%, #e3f0f7 100%);
  border-top: 3px solid #00bfff;
  color: #00bfff;
  padding: 3rem 2rem 1rem;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.modern-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.modern-footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #00bfff;
  text-decoration: none;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.modern-footer .footer-brand p {
  color: #00bfff;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 500;
}

.modern-footer .social-links {
  display: flex;
  gap: 1rem;
}

.modern-footer .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(0, 191, 255, 0.1);
  border: 2px solid rgba(0, 191, 255, 0.3);
  border-radius: 50%;
  color: #00bfff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.modern-footer .social-link:hover {
  background: linear-gradient(135deg, #00bfff, #00ffc8);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.4);
}

.modern-footer .footer-links h4,
.modern-footer .footer-support h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00bfff;
  margin-bottom: 1rem;
}

.modern-footer .footer-links ul {
  list-style: none;
}

.modern-footer .footer-links ul li {
  margin-bottom: 0.5rem;
}

.modern-footer .footer-links ul li a {
  color: #00bfff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.modern-footer .footer-links ul li a:hover {
  color: #00ffc8;
}

.modern-footer .footer-support .support-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #00bfff;
  font-weight: 500;
}

.modern-footer .footer-bottom {
  border-top: 2px solid rgba(0, 191, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
  color: #00bfff;
  font-size: 0.9rem;
  font-weight: 500;
} 

/* Hero Features (Right Side List) */
.hero-features {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0, 191, 255, 0.08);
  padding: 2rem 2.5rem 2rem 2rem;
  margin: 2rem 0 0 0;
  max-width: 420px;
  min-width: 320px;
  color: #00bfff;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.hero-feature-item {
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 191, 255, 0.13);
}

.hero-feature-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-feature-item .feature-icon {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.hero-feature-item h3 {
  color: #00bfff;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0.2rem 0 0.5rem 0;
  display: inline-block;
  background: linear-gradient(90deg, #00bfff 60%, #00ffc8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-feature-item p {
  color: #333;
  font-size: 1rem;
  margin: 0 0 0.3rem 0;
}

.hero-feature-item .feature-label {
  display: inline-block;
  background: linear-gradient(90deg, #00ffc8 0%, #00bfff 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 0.2rem;
}

.hero-feature-item .feature-meta {
  color: #00bfff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  display: block;
} 