/* GDEN Classic Casino - Premium Styling
================================================== */

:root {
  /* Color Palette */
  --primary-gold: #d4af37;
  --secondary-gold: #b8941f;
  --dark-gold: #9d7e1a;
  --light-gold: #f4e4a6;

  --primary-dark: #0a0a0a;
  --secondary-dark: #1a1a1a;
  --tertiary-dark: #2a2a2a;

  --text-light: #ffffff;
  --text-muted: #b0b0b0;
  --text-dark: #333333;

  --accent-red: #dc3545;
  --accent-green: #28a745;
  --accent-blue: #007bff;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
  --gradient-dark: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 148, 31, 0.1) 100%);

  /* Shadows */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 5px 25px rgba(0, 0, 0, 0.2);
  --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 5px 25px rgba(212, 175, 55, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 1px solid red; */
}

body.classic-theme {
  font-family: "Inter", sans-serif;
  background: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.classic-theme section{
  overflow: hidden;
  padding: 6rem 0;
}

.text-gold {
  color: var(--primary-gold) !important;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-container {
  text-align: center;
}

.casino-loader {
  perspective: 1000px;
  margin-bottom: 2rem;
}

.dice {
  width: 60px;
  height: 60px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateDice 2s infinite linear;
  margin: 0 auto;
}

.face {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border: 2px solid var(--secondary-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 8px;
}

.face1 {
  transform: rotateY(0deg) translateZ(30px);
}
.face2 {
  transform: rotateY(90deg) translateZ(30px);
}
.face3 {
  transform: rotateY(180deg) translateZ(30px);
}
.face4 {
  transform: rotateY(-90deg) translateZ(30px);
}
.face5 {
  transform: rotateX(90deg) translateZ(30px);
}
.face6 {
  transform: rotateX(-90deg) translateZ(30px);
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--primary-dark);
  border-radius: 50%;
  margin: 1px;
}

@keyframes rotateDice {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

.loading-text {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 0.2em;
}

.loading-text span {
  display: inline-block;
  animation: bounce 1.4s infinite;
}

.loading-text span:nth-child(1) {
  animation-delay: 0.1s;
}
.loading-text span:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-text span:nth-child(3) {
  animation-delay: 0.3s;
}
.loading-text span:nth-child(4) {
  animation-delay: 0.4s;
}
.loading-text span:nth-child(5) {
  animation-delay: 0.5s;
}
.loading-text span:nth-child(6) {
  animation-delay: 0.6s;
}
.loading-text span:nth-child(7) {
  animation-delay: 0.7s;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.2);
  }
}

/* Header Styles */
.classic-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header-top {
  background: var(--secondary-dark);
  border-bottom: 1px solid var(--tertiary-dark);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.header-info .info-item {
  color: var(--text-muted);
}

.language-selector select {
  background: var(--tertiary-dark);
  border: 1px solid var(--primary-gold);
  color: var(--text-light);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
}

.social-links .social-link {
  width: 32px;
  height: 32px;
  background: var(--tertiary-dark);
  color: var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.social-links .social-link:hover {
  background: var(--primary-gold);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.main-navbar {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--primary-gold);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--text-light) !important;
  text-decoration: none;
}

.brand-text {
  margin-left: 1rem;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.brand-text small {
  display: none;
}

.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-gold);
  margin: 6px 0;
  transition: all var(--transition-fast);
  transform-origin: center;
}

/* When menu is CLOSED (collapsed class present) - show hamburger */
.navbar-toggler.collapsed span:nth-child(1) {
  transform: rotate(0deg) translate(0px, 0px);
}

.navbar-toggler.collapsed span:nth-child(2) {
  opacity: 1;
}

.navbar-toggler.collapsed span:nth-child(3) {
  transform: rotate(0deg) translate(0px, 0px);
}

/* When menu is OPEN (collapsed class removed) - show X */
.navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0.75rem 1rem !important;
  position: relative;
  transition: all var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-gold) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

.dropdown-menu {
  background: var(--secondary-dark);
  border: 1px solid var(--primary-gold);
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}

.dropdown-item {
  color: var(--text-light);
  padding: 0.75rem 1rem;
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--primary-gold);
  color: var(--primary-dark);
}

/* Buttons */
.btn-gold {
  background: var(--gradient-gold);
  border: none;
  color: var(--primary-dark);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  color: var(--primary-dark);
}

.btn-outline-gold {
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  background: transparent;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: all var(--transition-normal);
}

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

.btn-outline-light {
  border: 2px solid var(--text-light);
  color: var(--text-light);
  background: transparent;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: all var(--transition-normal);
}

.btn-outline-light:hover {
  background: var(--text-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  min-height: calc(100vh - 120px);
  padding-top: 120px;
  background: var(--gradient-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 2rem;
}

.badge-text {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 3rem;
}

.hero-stats {
  margin-bottom: 3rem;
}

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

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-gold);
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-visual {
  position: relative;
  z-index: 3;
}

.hero-image-container {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-heavy);
}

.floating-element {
  position: absolute;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.element-1 {
  top: 10%;
  left: -3%;
  animation-delay: 0s;
}

.element-2 {
  top: 60%;
  right: -10%;
  animation-delay: 2s;
}

.element-3 {
  bottom: 10%;
  left: 10%;
  animation-delay: 4s;
}

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

.floating-card {
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--primary-gold);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-medium);
  min-width: 150px;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  color: var(--primary-dark);
}

.card-content h6 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
}

.card-content span {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-muted);
  z-index: 3;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--primary-gold);
  border-radius: 12px;
  margin: 0 auto 0.5rem;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--primary-gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    top: 6px;
    opacity: 1;
  }
  100% {
    top: 24px;
    opacity: 0;
  }
}

/* Features Section */
.features-section {
  background: var(--secondary-dark);
  position: relative;
}

.feature-card {
  background: var(--tertiary-dark);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-normal);
  height: 100%;
}

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

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

.feature-card h5 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  margin: 0;
}

/* Games Section */
.games-section {
  background: var(--primary-dark);
  position: relative;
}

.section-header {
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  margin-bottom: 1rem;
}

.section-badge span {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.category-tab {
  background: transparent;
  border: 2px solid var(--tertiary-dark);
  color: var(--text-muted);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.category-tab:hover,
.category-tab.active {
  border-color: var(--primary-gold);
  background: var(--primary-gold);
  color: var(--primary-dark);
}

.game-card {
  background: var(--secondary-dark);
  border: 1px solid var(--tertiary-dark);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-normal);
  height: 100%;
}

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

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

.game-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.game-actions {
  display: flex;
  gap: 0.5rem;
}

.game-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.game-content {
  padding: 1.5rem;
}

.game-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.game-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.game-provider {
  color: var(--text-muted);
}

.game-jackpot,
.game-players,
.game-rtp {
  color: var(--primary-gold);
  font-weight: 600;
}

.game-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stars {
  color: var(--primary-gold);
}

.rating-text {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 991.98px) {

  .header-buttons{
    margin-top: 2rem;
  }

  .about-stats{
    margin-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .floating-element {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .category-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .category-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (max-width: 575.98px) {

  .container {
    overflow-x: hidden;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* Live Winners Section */
.live-winners-section {
  background: var(--secondary-dark);
  border-top: 1px solid var(--primary-gold);
  border-bottom: 1px solid var(--primary-gold);
  overflow: hidden;
}

.winners-ticker {
  overflow: hidden;
  white-space: nowrap;
}

.ticker-content {
  display: inline-flex;
  animation: scroll-left 30s linear infinite;
}

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

.winner-item {
  display: inline-flex;
  align-items: center;
  margin-right: 3rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  min-width: 250px;
}

.winner-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 1rem;
}

.winner-info {
  flex: 1;
}

.winner-name {
  display: block;
  font-weight: 600;
  color: var(--text-light);
}

.winner-game {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.winner-amount {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-gold);
}

/* Tournaments Section */
.tournaments-section {
  background: var(--secondary-dark);
}

.tournament-card {
  background: var(--tertiary-dark);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all var(--transition-normal);
  height: 100%;
}

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

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

.tournament-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.tournament-badge.upcoming {
  background: var(--accent-blue);
  color: white;
}

.tournament-badge.vip {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  color: white;
}

.tournament-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.tournament-status.live {
  color: var(--accent-green);
}

.tournament-status.live i {
  animation: pulse 2s infinite;
}

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

.tournament-title {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.tournament-prize {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-gold);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.tournament-info {
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.tournament-progress {
  margin-bottom: 1.5rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--secondary-dark);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 4px;
  transition: width var(--transition-normal);
}

.progress-text {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tournament-countdown {
  margin-bottom: 1.5rem;
}

.countdown-timer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.time-unit {
  text-align: center;
  background: var(--secondary-dark);
  border-radius: 8px;
  padding: 1rem 0.5rem;
  flex: 1;
}

.time-value {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.time-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.vip-requirement {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #8b5cf6;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Promotions Section */
.promotions-section {
  background: var(--primary-dark);
}

.promo-card {
  background: var(--secondary-dark);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all var(--transition-normal);
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.promo-card.featured {
  border-color: var(--primary-gold);
  background: linear-gradient(135deg, var(--secondary-dark) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.promo-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-red);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.promo-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--primary-dark);
}

.promo-icon.small {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
}

.promo-title {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.promo-offer {
  margin-bottom: 1.5rem;
}

.offer-amount {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-gold);
  line-height: 1;
}

.promo-offer.small .offer-amount {
  font-size: 2rem;
}

.offer-text {
  display: block;
  color: var(--text-muted);
  font-size: 1.125rem;
}

.promo-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.promo-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.promo-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.promo-features .feature-item i {
  color: var(--accent-green);
  font-size: 0.75rem;
}

/* VIP Section */
.vip-section {
  background: var(--secondary-dark);
}

.vip-tiers {
  margin-bottom: 4rem;
}

.vip-tier {
  background: var(--tertiary-dark);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-normal);
  height: 100%;
  position: relative;
}

.vip-tier:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-gold);
}

.vip-tier.popular {
  border-color: var(--primary-gold);
  background: linear-gradient(135deg, var(--tertiary-dark) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.tier-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gold);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.tier-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: var(--primary-dark);
}

.tier-title {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.tier-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.tier-benefits {
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.benefit-item i {
  color: var(--accent-green);
}

.vip-perks {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.perk-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.perk-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.vip-tier.bronze .tier-icon {
  background: linear-gradient(135deg, #cd7f32 0%, #e6b17f 100%);
}

.vip-tier.silver .tier-icon {
  background: linear-gradient(135deg, #c0c0c0 0%, #e6e6e6 100%);
}

.vip-tier.gold .tier-icon {
  background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 100%);
}

.vip-tier.diamond .tier-icon {
  background: linear-gradient(135deg, #b9f2ff 0%, #e6f9ff 100%);
}

.tier-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tier-requirement {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--primary-dark);
}

.testimonial-card {
  background: var(--secondary-dark);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all var(--transition-normal);
  height: 100%;
}

.testimonial-content {
  margin-bottom: 2rem;
}

.quote-icon {
  color: var(--primary-gold);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-rating {
  color: var(--primary-gold);
}

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

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  border: 2px solid var(--primary-gold);
}

.author-name {
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.author-title {
  color: var(--primary-gold);
  font-size: 0.875rem;
}

/* About Section */
.about-section {
  background: var(--secondary-dark);
}

.about-description {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.about-features {
  margin-bottom: 2rem;
}

.about-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-features .feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.about-features .feature-content {
  flex: 1;
}

.about-features .feature-content h5 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.about-features .feature-content p {
  color: var(--text-muted);
  margin: 0;
}

.about-stats {
  margin-top: 2rem;
}

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

.about-stats .stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-gold);
  display: block;
}

.about-stats .stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-visual {
  position: relative;
}

.about-image-container {
  position: relative;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-heavy);
}

.achievement-card {
  position: absolute;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--primary-gold);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-medium);
  min-width: 150px;
  animation: float 6s ease-in-out infinite;
}

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

.card-2 {
  top: 50%;
  left: -10%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 10%;
  right: 10%;
  animation-delay: 4s;
}

.achievement-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  color: var(--primary-dark);
}

.achievement-content h6 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
}

.achievement-content span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Payment Methods Section */
.payment-section {
  background: var(--primary-dark);
}

.payment-methods {
  margin-bottom: 3rem;
}

.payment-card {
  background: var(--secondary-dark);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
  height: 100%;
}

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

.payment-icon {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.payment-card h5 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.payment-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.875rem;
}

.payment-features .feature-item {
  background: var(--secondary-dark);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
}

.payment-features .feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.payment-features .feature-item h5 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.payment-features .feature-item p {
  color: var(--text-muted);
  margin: 0;
}

/* Contact Section */
.contact-section {
  background: var(--secondary-dark);
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  background: var(--tertiary-dark);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.contact-content {
  flex: 1;
}

.contact-content h5 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.contact-content p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.contact-link:hover {
  color: var(--secondary-gold);
  text-decoration: underline;
}

.contact-form-container {
  background: var(--tertiary-dark);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  background: var(--secondary-dark);
  border: 1px solid var(--tertiary-dark);
  border-radius: 8px;
  color: var(--text-light);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
}

/* Footer Section */
.footer-section {
  background: var(--primary-dark);
  border-top: 1px solid var(--primary-gold);
}

.footer-main {
  padding: 4rem 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  margin-right: 1rem;
}

.footer-logo .brand-text {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--text-light);
  font-size: 1.5rem;
}

.footer-logo .brand-text small {
  display: block;
  font-size: 0.75rem;
  color: var(--primary-gold);
  letter-spacing: 0.1em;
}

.footer-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social .social-link {
  width: 40px;
  height: 40px;
  background: var(--tertiary-dark);
  color: var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer-social .social-link:hover {
  background: var(--primary-gold);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.footer-title {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

.footer-newsletter {
  background: var(--secondary-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.newsletter-content h4 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.newsletter-content p {
  color: var(--text-muted);
  margin: 0;
}

.newsletter-form {
  display: flex;
}

.newsletter-form .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}

.newsletter-form .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.footer-bottom {
  background: var(--secondary-dark);
}

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

.footer-certifications {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.cert-item i {
  color: var(--primary-gold);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* Live Chat Widget */
.live-chat-widget {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
}

.chat-toggle {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  position: relative;
}

.chat-notification {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: var(--accent-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.chat-window {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 320px;
  background: var(--secondary-dark);
  border: 1px solid var(--primary-gold);
  border-radius: 16px;
  box-shadow: var(--shadow-heavy);
  display: none;
  overflow: hidden;
}

.chat-window.active {
  display: block;
}

.chat-header {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header h6 {
  margin: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.chat-close {
  background: transparent;
  border: none;
  color: var(--primary-dark);
  cursor: pointer;
}

.chat-body {
  height: 300px;
  padding: 1rem;
  overflow-y: auto;
}

.chat-message {
  display: flex;
  margin-bottom: 1rem;
}

.chat-message.support {
  flex-direction: row;
}

.chat-message.user {
  flex-direction: row-reverse;
}

.message-avatar {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  margin-right: 0.75rem;
}

.chat-message.user .message-avatar {
  background: var(--tertiary-dark);
  color: var(--text-light);
  margin-right: 0;
  margin-left: 0.75rem;
}

.message-content {
  background: var(--tertiary-dark);
  border-radius: 12px;
  padding: 1rem;
  max-width: 70%;
}

.chat-message.user .message-content {
  background: var(--primary-gold);
  color: var(--primary-dark);
}

.message-content p {
  margin: 0;
  margin-bottom: 0.5rem;
}

.message-time {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
}

.chat-message.user .message-time {
  color: var(--primary-dark);
  opacity: 0.7;
}

.chat-footer {
  padding: 1rem;
  border-top: 1px solid var(--tertiary-dark);
  display: flex;
  align-items: center;
}

.chat-input {
  flex: 1;
  background: var(--tertiary-dark);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1rem;
  color: var(--text-light);
}

.chat-input:focus {
  outline: none;
}

.chat-send {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.3rem;
  cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .header-info,
  .header-actions {
    justify-content: center !important;
    margin-bottom: 0.5rem;
  }

  .hero-content {
    text-align: center;
    margin-top: 8rem;
    margin-bottom: 5rem;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .swiper-pagination {
    display: none;
  }

  .achievement-card {
    display: none;
  }

  .newsletter-content {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .footer-certifications {
    justify-content: center;
    margin-top: 1rem;
  }

  .footer-copyright {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .newsletter-form {
    display: block;
  }

  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 2rem;
  }

  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 1rem;
    justify-content: flex-start;
  }

  .category-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .vip-tier {
    margin-bottom: 2rem;
  }

  .contact-form-container {
    margin-top: 2rem;
  }
}

@media (max-width: 575.98px) {
  .floating-element {
    display: none;
  }

  .hero-stats .stat-number {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .promo-offer .offer-amount {
    font-size: 2rem;
  }

  .live-chat-widget {
    bottom: 1rem;
    left: 1rem;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
  }
}

/* Bonus Breakdown Styles */
.bonus-breakdown {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--primary-gold);
  border-radius: 12px;
  padding: 1rem;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.breakdown-item:last-child {
  margin-bottom: 0;
}

.breakdown-label {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.breakdown-value {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 0.875rem;
}

/* Bonus Timer Styles */
.bonus-timer {
  text-align: center;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  border-radius: 12px;
  padding: 1rem;
}

.timer-label {
  color: #dc3545;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timer-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-number {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #dc3545;
  line-height: 1;
}

.timer-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timer-separator {
  font-size: 1.5rem;
  color: #dc3545;
  font-weight: 700;
}

/* Responsive adjustments for bonus card */
@media (max-width: 767.98px) {
  .promo-features {
    grid-template-columns: 1fr;
  }

  .timer-display {
    flex-direction: column;
    gap: 0.25rem;
  }

  .timer-separator {
    display: none;
  }
}

/* Section Spacing - Increased Gap */
.section {
  padding: 10rem 0;
}

.hero-section {
  min-height: calc(100vh - 120px);
  padding-top: 120px;
  padding-bottom: 10rem;
  background: var(--gradient-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.features-section {
  background: var(--secondary-dark);
  position: relative;
  padding: 10rem 0;
}

.games-section {
  background: var(--primary-dark);
  position: relative;
  padding: 10rem 0;
}

.live-winners-section {
  background: var(--secondary-dark);
  border-top: 1px solid var(--primary-gold);
  border-bottom: 1px solid var(--primary-gold);
  overflow: hidden;
  padding: 5rem 0;
}

.tournaments-section {
  background: var(--secondary-dark);
  padding: 10rem 0;
}

.promotions-section {
  background: var(--primary-dark);
  padding: 10rem 0;
}

.vip-section {
  background: var(--secondary-dark);
  padding: 10rem 0;
}

.testimonials-section {
  background: var(--primary-dark);
  padding: 10rem 0;
}

.about-section {
  background: var(--secondary-dark);
  padding: 10rem 0;
}

.payment-section {
  background: var(--primary-dark);
  padding: 10rem 0;
}

.contact-section {
  background: var(--secondary-dark);
  padding: 10rem 0;
}

.footer-newsletter {
  background: var(--secondary-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 5rem 0;
}

/* Responsive section spacing */
@media (max-width: 991.98px) {
  .section {
    padding: 7rem 0;
  }

  .hero-section,
  .features-section,
  .games-section,
  .tournaments-section,
  .promotions-section,
  .vip-section,
  .testimonials-section,
  .about-section,
  .payment-section,
  .contact-section {
    padding: 7rem 0;
  }

  .live-winners-section,
  .footer-newsletter {
    padding: 4rem 0;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 5rem 0;
  }

  .hero-section,
  .features-section,
  .games-section,
  .tournaments-section,
  .promotions-section,
  .vip-section,
  .testimonials-section,
  .about-section,
  .payment-section,
  .contact-section {
    padding: 5rem 0;
  }

  .live-winners-section,
  .footer-newsletter {
    padding: 3rem 0;
  }
}
