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

:root {
  --wine-velvet: #5d1a25;
  --wine-dark: #3d1118;
  --platinum: #eaeaea;
  --platinum-light: #f5f5f5;
  --platinum-dark: #dadada;
  --silver: #b4b4b4;
  --ghost-white: #fafafa;
  --charcoal: #121212;
  --charcoal-light: #1a1a1a;
  --charcoal-dark: #0a0a0a;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--charcoal);
  color: var(--ghost-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: var(--ghost-white);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: var(--platinum);
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--silver);
}

p {
  margin-bottom: 1rem;
  color: var(--ghost-white);
  font-size: clamp(0.9rem, 2vw, 1rem);
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Header Styles */
.header {
  background: linear-gradient(135deg, var(--wine-velvet) 0%, var(--wine-dark) 100%);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  min-height: 60px;
}

.logo img {
  height: clamp(40px, 8vw, 60px);
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--wine-velvet) 0%, var(--wine-dark) 100%);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  z-index: 999;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
}

.nav.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 0;
  padding: 1rem 0;
}

.nav-link {
  color: var(--ghost-white);
  font-weight: 500;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  display: block;
  border-bottom: 1px solid rgba(180, 180, 180, 0.1);
  position: relative;
  overflow: hidden;
}

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

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

.nav-link:hover,
.nav-link.active {
  background: linear-gradient(135deg, rgba(234, 234, 234, 0.1) 0%, rgba(180, 180, 180, 0.05) 100%);
  color: var(--platinum);
  transform: translateX(5px);
}

.header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(234, 234, 234, 0.1);
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--ghost-white);
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
}

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

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

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

/* Button Styles with Gradients */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.6rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: clamp(0.85rem, 2vw, 1rem);
  min-height: 44px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--platinum-light) 0%, var(--platinum) 50%, var(--platinum-dark) 100%);
  color: var(--charcoal);
  box-shadow: 0 6px 20px rgba(245, 245, 245, 0.3);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 245, 245, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, var(--platinum-light) 50%, var(--platinum) 100%);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(245, 245, 245, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, transparent 0%, rgba(180, 180, 180, 0.1) 50%, transparent 100%);
  color: var(--silver);
  border: 2px solid var(--silver);
  position: relative;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--silver) 0%, #c4c4c4 50%, var(--silver) 100%);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(180, 180, 180, 0.3);
}

.btn-large {
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1.5rem, 4vw, 2rem);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  min-height: 52px;
}

/* Interactive Elements */
.interactive-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.interactive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

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

.floating-animation {
  animation: floating 3s ease-in-out infinite;
}

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

/* Floating CTA Button */
.floating-cta {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  animation: floatSide 3s ease-in-out infinite;
}

.floating-cta-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.floating-cta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

@keyframes floatSide {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-5px);
  }
}

/* CTA Sections */
.stats-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(93, 26, 37, 0.1) 0%, rgba(18, 18, 18, 0.8) 100%);
  border-radius: 20px;
  border: 1px solid rgba(93, 26, 37, 0.3);
}

.stats-cta h3 {
  color: var(--platinum);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 1.5rem;
}

.stats-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

.cta-subtitle {
  margin-top: 0.5rem;
  color: var(--silver);
  font-size: 0.9rem;
  font-style: italic;
}

.games-cta {
  margin-top: 3rem;
}

.cta-highlight {
  background: linear-gradient(135deg, var(--wine-velvet) 0%, var(--wine-dark) 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(234, 234, 234, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-highlight h3 {
  color: var(--platinum);
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.cta-highlight p {
  color: var(--ghost-white);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.payment-cta {
  margin-top: 2rem;
}

.cta-box {
  background: rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(93, 26, 37, 0.3);
}

.cta-box h4 {
  color: var(--platinum);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--silver);
  margin-bottom: 1.5rem;
}

.vip-cta {
  margin-top: 3rem;
}

.vip-cta-content {
  background: linear-gradient(135deg, rgba(234, 234, 234, 0.1) 0%, rgba(180, 180, 180, 0.05) 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(234, 234, 234, 0.2);
}

.vip-cta-content h3 {
  color: var(--platinum);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
}

.vip-cta-content p {
  color: var(--ghost-white);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  margin-bottom: 2rem;
}

.vip-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* Bonus Page CTAs */
.bonus-cta {
  margin-top: 3rem;
}

.bonus-cta-highlight {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.bonus-cta-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.bonus-cta-highlight h3 {
  color: white;
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.bonus-cta-highlight p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 2rem;
}

.bonus-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.bonus-timer {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-timer span {
  color: white;
  font-weight: bold;
  font-size: clamp(0.9rem, 2vw, 1rem);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.7;
  }
}

.promotions-cta {
  margin-top: 3rem;
}

.promotions-cta-box {
  background: rgba(0, 0, 0, 0.15);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(93, 26, 37, 0.3);
}

.promotions-cta-box h3 {
  color: var(--platinum);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin-bottom: 1rem;
}

.promotions-cta-box p {
  color: var(--silver);
  margin-bottom: 2rem;
}

.strategy-cta {
  margin-top: 3rem;
}

.strategy-cta-content {
  background: linear-gradient(135deg, rgba(93, 26, 37, 0.15) 0%, rgba(18, 18, 18, 0.9) 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(93, 26, 37, 0.4);
}

.strategy-cta-content h3 {
  color: var(--platinum);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
}

.strategy-cta-content p {
  color: var(--ghost-white);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  margin-bottom: 2rem;
}

.strategy-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* Sticky Bottom CTA */
.sticky-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--wine-velvet) 0%, var(--wine-dark) 100%);
  border-top: 2px solid var(--platinum);
  z-index: 998;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.sticky-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.sticky-cta-text {
  color: var(--ghost-white);
  font-weight: 600;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.sticky-cta-buttons {
  display: flex;
  gap: 0.5rem;
}

.sticky-cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  min-height: 40px;
}

/* Hero Section */
.hero {
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: linear-gradient(135deg, rgba(93, 26, 37, 0.15) 0%, rgba(18, 18, 18, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(93, 26, 37, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--platinum) 0%, var(--silver) 50%, var(--ghost-white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* Stats Section */
.stats {
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: var(--charcoal-light);
}

.stats h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-card {
  background: linear-gradient(135deg, var(--wine-velvet) 0%, var(--wine-dark) 100%);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--platinum) 0%, var(--silver) 50%, var(--platinum) 100%);
}

.stat-card h3 {
  color: var(--platinum);
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.stat-card p {
  color: var(--ghost-white);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
}

/* Author Section Enhanced */
.author {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(135deg, var(--wine-velvet) 0%, var(--wine-dark) 100%);
  position: relative;
}

.author::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(234, 234, 234, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.author-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.author-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.author-image::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: linear-gradient(45deg, var(--platinum), var(--silver), var(--platinum));
  border-radius: 50%;
  z-index: -1;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

.author-image img {
  width: clamp(150px, 25vw, 200px);
  height: clamp(150px, 25vw, 200px);
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--ghost-white);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.author-image img:hover {
  transform: scale(1.05);
}

.author-info h2 {
  color: var(--platinum);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.5rem;
}

.author-info h3 {
  color: var(--ghost-white);
  margin-bottom: 0.5rem;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.author-title {
  color: var(--silver);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.author-bio {
  margin-bottom: 2rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.7;
}

.author-credentials {
  background: rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  border-left: 4px solid var(--platinum);
}

.author-credentials h4 {
  color: var(--platinum);
  margin-bottom: 1rem;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.author-credentials ul {
  list-style: none;
  text-align: left;
}

.author-credentials li {
  padding: 0.75rem 0;
  color: var(--silver);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  border-bottom: 1px solid rgba(180, 180, 180, 0.1);
  position: relative;
  padding-left: 2rem;
}

.author-credentials li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--platinum);
  font-weight: bold;
}

.author-publications {
  background: rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.author-publications h4 {
  color: var(--platinum);
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.author-publications ul {
  list-style: none;
}

.author-publications li {
  padding: 0.5rem 0;
  color: var(--silver);
  font-size: clamp(0.85rem, 2vw, 0.9rem);
  font-style: italic;
}

.author-contact {
  background: linear-gradient(135deg, rgba(234, 234, 234, 0.1) 0%, rgba(180, 180, 180, 0.05) 100%);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.author-contact h4 {
  color: var(--platinum);
  margin-bottom: 1rem;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(234, 234, 234, 0.1);
  transform: translateX(5px);
}

.contact-item span {
  font-size: 1.2rem;
}

.contact-item a {
  color: var(--silver);
  transition: color 0.3s ease;
  font-size: clamp(0.85rem, 2vw, 0.9rem);
}

.contact-item a:hover {
  color: var(--platinum);
}

.author-quote {
  background: linear-gradient(135deg, var(--wine-dark) 0%, rgba(93, 26, 37, 0.8) 100%);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  border-left: 4px solid var(--platinum);
  position: relative;
}

.author-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--platinum);
  opacity: 0.3;
  font-family: "Playfair Display", serif;
}

.author-quote p {
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--ghost-white);
  margin: 0;
  text-align: center;
}

.author-quote cite {
  display: block;
  text-align: right;
  margin-top: 1rem;
  color: var(--silver);
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.mobile-experience,
.games,
.payments,
.vip-program,
.bonus-package,
.ongoing-promotions,
.bonus-optimization,
.faq {
  padding: 3rem 0;
}
.section-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.section-image img {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 15px;
  margin: 0 auto;
  display: block;
}
.section-text {
  text-align: center;
}
.section-text h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.feature-list {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}
.feature-list li {
  padding: 0.5rem 0;
  color: #b4b4b4;
}
.feature-list li:before {
  content: "✓";
  color: #eaeaea;
  font-weight: bold;
  margin-right: 0.5rem;
}
.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.game-category {
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid #5d1a25;
}
.game-category h3 {
  color: #eaeaea;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.game-category h4 {
  color: #b4b4b4;
  margin: 1rem 0 0.5rem 0;
  font-size: 1rem;
}
.game-category ul {
  list-style: none;
  margin-top: 1rem;
}
.game-category li {
  padding: 0.5rem 0;
  color: #b4b4b4;
  border-bottom: 1px solid rgba(180, 180, 180, 0.1);
  font-size: 0.9rem;
}
.payment-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.payment-highlight {
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 15px;
}
.payment-highlight h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.payment-highlight ul {
  list-style: none;
}
.payment-highlight li {
  padding: 0.5rem 0;
  color: #b4b4b4;
}
.payment-highlight li:before {
  content: "•";
  color: #eaeaea;
  font-weight: bold;
  margin-right: 0.5rem;
}
.payment-table,
.bonus-table {
  overflow-x: auto;
  margin-top: 1rem;
}
.payment-table table,
.bonus-table table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
}
.payment-table th,
.payment-table td,
.bonus-table th,
.bonus-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(180, 180, 180, 0.1);
  font-size: 0.9rem;
}
.payment-table th,
.bonus-table th {
  background: #5d1a25;
  color: #eaeaea;
  font-weight: 600;
}
.payment-table td,
.bonus-table td {
  color: #b4b4b4;
}
.vip-levels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.vip-level {
  background: linear-gradient(135deg, #5d1a25 0%, #3d1118 100%);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
}
.vip-level h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.vip-level p {
  font-size: 0.9rem;
  color: #b4b4b4;
}
.cashback {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: #eaeaea;
}
.promotions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.promotion-card {
  background: linear-gradient(135deg, #5d1a25 0%, #3d1118 100%);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.promotion-card h3 {
  color: #eaeaea;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.promotion-card p {
  color: #b4b4b4;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.strategy-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.strategy-section {
  background: #121212;
  padding: 1.5rem;
  border-radius: 15px;
}
.strategy-section h3 {
  color: #eaeaea;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.strategy-section ul {
  list-style: none;
}
.strategy-section li {
  padding: 0.5rem 0;
  color: #b4b4b4;
  font-size: 0.9rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.faq-item {
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid #5d1a25;
}
.faq-item h3 {
  color: #eaeaea;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.faq-item p {
  color: #b4b4b4;
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer {
  background: #0a0a0a;
  padding: 2rem 0 1rem;
  border-top: 1px solid #5d1a25;
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer-section h3 {
  color: #eaeaea;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer-section ul {
  list-style: none;
}
.footer-section li {
  padding: 0.25rem 0;
}
.footer-section a {
  color: #b4b4b4;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}
.footer-section a:hover {
  color: #eaeaea;
}
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.payment-method {
  background: #5d1a25;
  color: #eaeaea;
  padding: 0.5rem 0.75rem;
  border-radius: 5px;
  font-size: 0.8rem;
}
.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.social-link {
  color: #b4b4b4;
  padding: 0.5rem;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}
.social-link:hover {
  color: #eaeaea;
}
.age-restriction {
  background: #eaeaea;
  color: #121212;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
  font-size: 1rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(180, 180, 180, 0.1);
  color: #b4b4b4;
}
.footer-bottom p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* 404 Error Page Styles */
.error-page {
  min-height: 100vh;
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: linear-gradient(135deg, rgba(93, 26, 37, 0.15) 0%, rgba(18, 18, 18, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.error-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(93, 26, 37, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.casino-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-chip {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--wine-velvet) 0%, var(--wine-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--platinum);
  font-weight: bold;
  font-size: 0.8rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  pointer-events: auto;
  animation: float 6s ease-in-out infinite;
  border: 3px solid var(--platinum);
}

.floating-chip:nth-child(1) {
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.floating-chip:nth-child(2) {
  top: 25%;
  left: 5%;
  animation-delay: 1s;
}

.floating-chip:nth-child(3) {
  top: 45%;
  right: 15%;
  animation-delay: 2s;
}

.floating-chip:nth-child(4) {
  top: 65%;
  left: 8%;
  animation-delay: 3s;
}

.floating-chip:nth-child(5) {
  top: 75%;
  right: 12%;
  animation-delay: 4s;
}

.floating-chip:nth-child(6) {
  top: 35%;
  left: 15%;
  animation-delay: 5s;
  background: linear-gradient(135deg, var(--platinum) 0%, var(--silver) 100%);
  color: var(--charcoal);
  font-size: 1.2rem;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
  }
  75% {
    transform: translateY(-15px) rotate(270deg);
  }
}

.dice {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--platinum);
  border-radius: 8px;
  cursor: pointer;
  pointer-events: auto;
  animation: roll 4s linear infinite;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dice:nth-child(7) {
  top: 20%;
  left: 25%;
  animation-delay: 0s;
}

.dice:nth-child(8) {
  top: 80%;
  right: 25%;
  animation-delay: 2s;
}

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

.card-symbol {
  position: absolute;
  font-size: 2rem;
  color: var(--wine-velvet);
  cursor: pointer;
  pointer-events: auto;
  animation: float 8s ease-in-out infinite;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.card-symbol:nth-child(9) {
  top: 10%;
  left: 20%;
  animation-delay: 1s;
}

.card-symbol:nth-child(10) {
  top: 30%;
  right: 5%;
  color: var(--wine-velvet);
  animation-delay: 3s;
}

.card-symbol:nth-child(11) {
  top: 60%;
  right: 8%;
  color: var(--wine-velvet);
  animation-delay: 5s;
}

.card-symbol:nth-child(12) {
  top: 85%;
  left: 20%;
  animation-delay: 7s;
}

.error-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.error-number {
  font-size: clamp(6rem, 15vw, 12rem);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--platinum) 0%, var(--silver) 50%, var(--ghost-white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  position: relative;
  animation: glitch 2s infinite;
}

@keyframes glitch {
  0%,
  90%,
  100% {
    transform: translate(0);
  }
  10% {
    transform: translate(-2px, 2px);
  }
  20% {
    transform: translate(2px, -2px);
  }
  30% {
    transform: translate(-2px, -2px);
  }
  40% {
    transform: translate(2px, 2px);
  }
  50% {
    transform: translate(-2px, 2px);
  }
  60% {
    transform: translate(2px, -2px);
  }
  70% {
    transform: translate(-2px, -2px);
  }
  80% {
    transform: translate(2px, 2px);
  }
}

.error-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--platinum);
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}

.error-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--silver);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.error-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  align-items: center;
}

.error-search {
  background: rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  border: 1px solid rgba(93, 26, 37, 0.3);
}

.error-search h3 {
  color: var(--platinum);
  margin-bottom: 1.5rem;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.search-input {
  padding: 1rem;
  border: 2px solid var(--silver);
  border-radius: 8px;
  background: var(--charcoal-light);
  color: var(--ghost-white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--platinum);
  box-shadow: 0 0 0 3px rgba(234, 234, 234, 0.1);
}

.search-input::placeholder {
  color: var(--silver);
}

.popular-links {
  background: rgba(0, 0, 0, 0.15);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(93, 26, 37, 0.2);
}

.popular-links h4 {
  color: var(--platinum);
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.popular-link {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(93, 26, 37, 0.1);
  border-radius: 8px;
  color: var(--silver);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.popular-link:hover {
  background: rgba(93, 26, 37, 0.2);
  color: var(--platinum);
  transform: translateX(5px);
  border-color: rgba(234, 234, 234, 0.2);
}

/* Hide casino elements on very small screens for performance */
@media (max-width: 480px) {
  .casino-elements {
    display: none;
  }

  .error-actions {
    flex-direction: column;
  }

  .search-form {
    flex-direction: column;
  }

  .floating-cta {
    right: 10px;
  }

  .sticky-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .stats-cta-buttons,
  .cta-buttons,
  .vip-cta-buttons,
  .bonus-cta-buttons,
  .strategy-cta-buttons {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .error-actions {
    flex-direction: row;
    justify-content: center;
  }

  .search-form {
    flex-direction: row;
  }

  .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-cta-buttons,
  .cta-buttons,
  .vip-cta-buttons,
  .bonus-cta-buttons,
  .strategy-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .author-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }

  .nav {
    display: block;
    position: static;
    background: none;
    box-shadow: none;
    border-radius: 0;
  }

  .nav-list {
    flex-direction: row;
    gap: 2rem;
    padding: 0;
  }

  .nav-link {
    padding: 0.5rem 1rem;
    border-bottom: none;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vip-levels {
    grid-template-columns: repeat(7, 1fr);
  }

  .promotions-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Utility classes for better mobile experience */
.text-center-mobile {
  text-align: center;
}

@media (min-width: 768px) {
  .text-center-mobile {
    text-align: left;
  }
}

/* Ensure images don't overflow on small screens */
img {
  max-width: 100%;
  height: auto;
}

/* Better touch targets for mobile */
@media (max-width: 767px) {
  .btn,
  .nav-link,
  .contact-item {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Text gradient utility */
.text-gradient {
  background: linear-gradient(135deg, var(--platinum) 0%, var(--silver) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hover-lift {
  transition: transform 0.3s ease;
}

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