@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #3CC66C;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #1E7668;
  --treasure-gold: #FFD700;
  --treasure-brown: #8B4513;
  --snake-blue: #2196F3;
  --snake-dark: #1976D2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  background-attachment: fixed;
  color: #FFFFFF !important;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Force all text to be visible */
* {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  color: #FFFFFF !important;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
}

p, span, li, a, div {
  color: #FFFFFF !important;
}

.section-subtitle,
.hero-description {
  color: #E0E0E0 !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

/* Animated Background Snake */
#background-snake-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  background: transparent;
}

#treasures-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.treasure-item {
  position: absolute;
  font-size: 2rem;
  animation: treasureFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.treasure-item.eaten {
  opacity: 0;
  transform: scale(0);
}

@keyframes treasureFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

/* Decorative Snakes */
.decorative-snake {
  position: fixed;
  font-size: 3rem;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(33, 150, 243, 0.8));
  animation: snakeFloat 4s ease-in-out infinite;
}

.snake-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.snake-2 {
  top: 30%;
  right: 8%;
  animation-delay: 0.8s;
}

.snake-3 {
  bottom: 20%;
  left: 10%;
  animation-delay: 1.6s;
}

.snake-4 {
  top: 60%;
  right: 5%;
  animation-delay: 2.4s;
}

.snake-5 {
  bottom: 10%;
  right: 15%;
  animation-delay: 3.2s;
}

@keyframes snakeFloat {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(10deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) translateX(-10px) rotate(-10deg);
    opacity: 0.9;
  }
  75% {
    transform: translateY(-15px) translateX(5px) rotate(5deg);
    opacity: 1;
  }
}

/* Section Snakes */
.section-snake {
  position: absolute;
  font-size: 4rem;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 0 15px rgba(33, 150, 243, 0.9));
  animation: sectionSnakeMove 5s ease-in-out infinite;
  opacity: 0.5;
}

.section-snake-left {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.section-snake-right {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.section-snake-top {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.section-snake-bottom {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.section-snake-faq-1 {
  top: 15%;
  left: 30px;
}

.section-snake-faq-2 {
  bottom: 15%;
  right: 30px;
}

@keyframes sectionSnakeMove {
  0%, 100% {
    transform: translateY(-50%) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(-50%) translateX(10px) rotate(15deg);
  }
  50% {
    transform: translateY(-50%) translateX(-10px) rotate(-15deg);
  }
  75% {
    transform: translateY(-50%) translateX(5px) rotate(10deg);
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
.header {
  position: relative;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.navbar {
  padding: 20px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  position: relative;
}

.logo img {
  height: 50px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.1);
}

.nav-snake-decoration {
  position: absolute;
  top: -5px;
  right: -30px;
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, #2d5016 0%, #3CC66C 50%, #2d5016 100%);
  border-radius: 20px;
  opacity: 0.6;
  animation: snakeMove 3s ease-in-out infinite;
}

@keyframes snakeMove {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--treasure-gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--treasure-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 15px;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--secondary-color);
}

.btn-primary {
  background: var(--treasure-gold);
  color: var(--secondary-color);
  border-color: var(--treasure-gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--treasure-gold);
  border-color: var(--treasure-gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-hero {
  background: linear-gradient(135deg, var(--treasure-gold) 0%, #FFA500 100%);
  color: var(--secondary-color);
  font-size: 1.1rem;
  padding: 16px 32px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.btn-glow {
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.8);
  }
}

.btn-hero-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
  font-size: 1.1rem;
  padding: 16px 32px;
}

.btn-hero-outline:hover {
  background: var(--text-primary);
  color: var(--secondary-color);
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 10;
  background: transparent;
}

/* Ensure all text is visible */
h1, h2, h3, h4, h5, h6, p, span, a, li, div {
  color: var(--text-primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title,
.section-title,
.hero-description,
.section-subtitle {
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 118, 104, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: -1;
}

.hero-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(60, 198, 108, 0.1) 0%, transparent 50%);
  animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, 20px);
  }
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--treasure-gold);
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-primary) !important;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 1), 0 0 20px rgba(255, 255, 255, 0.3);
}

.title-highlight {
  color: var(--treasure-gold);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.title-brand {
  color: var(--primary-color);
}

.hero-description {
  font-size: 1.2rem;
  color: #E0E0E0 !important;
  margin-bottom: 40px;
  line-height: 1.8;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--treasure-gold);
  margin-bottom: 5px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Section Styles */
section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary) !important;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 1), 0 0 15px rgba(255, 255, 255, 0.2);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #D0D0D0 !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

/* Treasure Chests Section */
.treasures-section {
  background: rgba(0, 0, 0, 0.3);
}

.treasures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.bonus-card-simple {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(60, 198, 108, 0.1) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-card-simple::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: cardGlow 3s ease-in-out infinite;
}

@keyframes cardGlow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
  }
}

.bonus-card-simple:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.6);
}

.bonus-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bonus-card-simple h3 {
  font-size: 1.8rem;
  color: #FFFFFF !important;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.bonus-card-simple p {
  color: #E0E0E0 !important;
  margin-bottom: 25px;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.treasure-chest-card {
  position: relative;
  cursor: pointer;
  perspective: 1000px;
  height: 350px;
  z-index: 10;
}

.treasure-chest-card .chest-container,
.treasure-chest-card .chest-lid,
.treasure-chest-card .chest-base,
.treasure-chest-card .chest-lock-icon,
.treasure-chest-card .unlock-hint {
  pointer-events: none;
}

.treasure-chest-card.unlocked .chest-content,
.treasure-chest-card.unlocked .chest-content * {
  pointer-events: auto;
}

.chest-container {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  pointer-events: none;
}

.chest-base {
  width: 100%;
  height: 60%;
  position: absolute;
  bottom: 0;
  background: linear-gradient(135deg, var(--treasure-brown) 0%, #A0522D 50%, var(--treasure-brown) 100%);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.chest-lid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(135deg, #DAA520 0%, var(--treasure-gold) 50%, #DAA520 100%);
  border-radius: 10px 10px 0 0;
  transform-origin: bottom;
  transition: transform 0.6s ease;
  box-shadow: 0 -5px 15px rgba(255, 215, 0, 0.5);
  z-index: 2;
}

.chest-lid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, var(--treasure-gold) 0%, #DAA520 100%);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.chest-lock-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2rem;
  z-index: 3;
  animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.chest-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 0 0 10px 10px;
  visibility: hidden;
}

.chest-content.hidden {
  visibility: hidden;
  opacity: 0;
}

.treasure-chest-card.unlocked .chest-content {
  pointer-events: auto;
}

.treasure-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.chest-content h3 {
  font-size: 1.5rem;
  color: #FFFFFF !important;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.chest-content p {
  color: #E0E0E0 !important;
  margin-bottom: 20px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.treasure-btn {
  padding: 10px 20px;
  background: var(--treasure-gold);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.treasure-btn:hover {
  background: #FFA500;
  transform: translateY(-2px);
}

.unlock-hint {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--treasure-gold);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 3;
  animation: hintBlink 1.5s ease-in-out infinite;
}

@keyframes hintBlink {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.treasure-chest-card.locked .chest-lid {
  transform: rotateX(0deg);
}

.treasure-chest-card.unlocked .chest-lid {
  transform: rotateX(-120deg);
}

.treasure-chest-card.unlocked .chest-lock-icon {
  opacity: 0;
  transform: scale(0);
}

.treasure-chest-card.unlocked .unlock-hint {
  display: none;
}

.treasure-chest-card.unlocked .chest-content {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.treasure-chest-card.unlocked .chest-content.hidden {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.treasure-chest-card:hover:not(.unlocked) {
  transform: scale(1.05);
}

/* Snake Games Section */
.snake-games-section {
  background: rgba(33, 150, 243, 0.05);
}

.snake-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.snake-game-card {
  background: linear-gradient(135deg, var(--snake-dark) 0%, var(--snake-blue) 50%, var(--snake-dark) 100%);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 3px solid #0D47A1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.snake-game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(33, 150, 243, 0.4);
}

.snake-head-wrapper {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.snake-head {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--snake-blue) 0%, var(--snake-dark) 100%);
  border-radius: 50%;
  position: relative;
  border: 3px solid #0D47A1;
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.5);
  animation: snakeHeadMove 3s ease-in-out infinite;
}

@keyframes snakeHeadMove {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(5px) rotate(5deg);
  }
  75% {
    transform: translateX(-5px) rotate(-5deg);
  }
}

.snake-eyes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
}

.snake-eye {
  width: 15px;
  height: 15px;
  background: #FFFFFF;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.snake-eye::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 7px;
  height: 7px;
  background: #000000;
  border-radius: 50%;
  animation: eyeBlink 3s ease-in-out infinite;
}

@keyframes eyeBlink {
  0%, 90%, 100% {
    height: 7px;
  }
  95% {
    height: 1px;
  }
}

.game-content {
  color: var(--text-primary);
}

.game-image {
  margin-bottom: 20px;
}

.game-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.game-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.game-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.6;
}

.game-btn {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.game-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Features Section */
.features-section {
  background: rgba(33, 150, 243, 0.05);
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.feature-icon-large {
  font-size: 4rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #FFFFFF !important;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.feature-card p {
  color: #E0E0E0 !important;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

/* Testimonials Section */
/* Comparison Table Section */
.comparison-table-section {
  background: rgba(0, 0, 0, 0.4);
  padding: 80px 0;
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  min-width: 800px;
}

.comparison-table thead {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(60, 198, 108, 0.2) 100%);
  border-bottom: 2px solid var(--treasure-gold);
}

.comparison-table th {
  padding: 20px 15px;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: #FFFFFF !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th:last-child {
  border-right: none;
}

.comparison-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: scale(1.01);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td {
  padding: 18px 15px;
  color: #E0E0E0 !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
  font-size: 0.95rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table td:last-child {
  border-right: none;
}

.comparison-table td strong {
  color: var(--treasure-gold) !important;
  font-weight: 700;
  font-size: 1.05rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.comparison-table td:first-child {
  font-weight: 600;
}

.comparison-table td:nth-child(2) {
  color: var(--treasure-gold) !important;
  font-weight: 600;
}

.comparison-table td:nth-child(3) {
  color: #3CC66C !important;
  font-weight: 600;
}

.comparison-table td:nth-child(4),
.comparison-table td:nth-child(5) {
  color: #FFFFFF !important;
  font-weight: 500;
}

.comparison-table td:last-child {
  text-align: center;
  font-weight: 600;
}

.comparison-table td.jackpot-yes {
  color: #3CC66C !important;
  text-shadow: 0 0 10px rgba(60, 198, 108, 0.5);
}

.comparison-table td.jackpot-no {
  color: #FF6B6B !important;
  opacity: 0.7;
}

/* Responsive Table */
@media (max-width: 1024px) {
  .table-wrapper {
    margin: 40px -20px 0;
    border-radius: 0;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 15px 10px;
  }
}

@media (max-width: 768px) {
  .comparison-table {
    font-size: 0.85rem;
    min-width: 700px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
  }
  
  .comparison-table th {
    font-size: 0.85rem;
  }
}

.testimonials-section {
  background: rgba(0, 0, 0, 0.3);
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(60, 198, 108, 0.3);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(60, 198, 108, 0.3);
}

.testimonial-rating {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-text {
  color: #E0E0E0 !important;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.testimonial-author {
  color: #FFD700 !important;
  font-weight: 600;
  text-align: right;
}

/* Security Section */
.security-section {
  background: rgba(0, 0, 0, 0.3);
  padding: 80px 0;
}

.security-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.security-item {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.security-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.5);
}

.security-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.security-item h3 {
  font-size: 1.3rem;
  color: #FFFFFF !important;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.security-item p {
  color: #E0E0E0 !important;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

/* Mobile Section */
.mobile-section {
  background: rgba(33, 150, 243, 0.05);
  padding: 80px 0;
}

.mobile-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mobile-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
}

.mobile-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #E0E0E0 !important;
  font-size: 1.1rem;
}

.check-icon {
  color: #3CC66C;
  font-size: 1.5rem;
  font-weight: bold;
}

.mobile-buttons {
  margin-top: 30px;
}

.phone-mockup {
  font-size: 15rem;
  text-align: center;
  filter: drop-shadow(0 0 20px rgba(33, 150, 243, 0.5));
  animation: phoneFloat 3s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Payment Section */
.payment-section {
  background: rgba(0, 0, 0, 0.3);
  padding: 80px 0;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.payment-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.payment-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.payment-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.payment-card h4 {
  font-size: 1.2rem;
  color: #FFFFFF !important;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.payment-card p {
  color: #E0E0E0 !important;
  font-size: 0.95rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

/* About Section */
.about-section {
  background: rgba(0, 0, 0, 0.3);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.about-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  color: var(--treasure-gold);
  padding: 8px 16px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-item h4 {
  color: var(--text-primary);
  margin-bottom: 5px;
}

.feature-item p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
}

/* Promotions Section */
.promotions-section {
  background: rgba(0, 0, 0, 0.3);
}

.promotions-carousel {
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 15px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}

.promo-slide {
  flex: 0 0 100%;
}

.promo-slide img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}

.promo-banner {
  border-radius: 15px;
  overflow: hidden;
}

.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* FAQ Section */
.faq-section {
  background: rgba(0, 0, 0, 0.3);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item-simple {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
}

.faq-item-simple::before {
  content: '🐍';
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  opacity: 0.3;
}

.faq-item-simple:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.faq-item-simple h4 {
  font-size: 1.3rem;
  color: #FFFFFF !important;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.faq-item-simple p {
  color: #E0E0E0 !important;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.faq-chest {
  position: relative;
  cursor: pointer;
  perspective: 1000px;
  min-height: 200px;
}

.faq-chest-body {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}

.faq-lid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(135deg, #DAA520 0%, var(--treasure-gold) 50%, #DAA520 100%);
  border-radius: 10px 10px 0 0;
  transform-origin: bottom;
  transition: transform 0.6s ease;
  box-shadow: 0 -3px 10px rgba(255, 215, 0, 0.4);
  z-index: 2;
}

.faq-chest.locked {
  background: linear-gradient(135deg, var(--treasure-brown) 0%, #A0522D 50%, var(--treasure-brown) 100%);
  border-radius: 10px;
  padding: 20px;
  min-height: 200px;
}

.faq-lock {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  z-index: 3;
  animation: lockPulse 2s ease-in-out infinite;
}

.faq-answer {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-answer.hidden {
  display: none;
}

.faq-answer h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-hint {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--treasure-gold);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
  animation: hintBlink 1.5s ease-in-out infinite;
}

.faq-chest.locked .faq-lid {
  transform: rotateX(0deg);
}

.faq-chest.unlocked {
  background: var(--third-color);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.faq-chest.unlocked .faq-lid {
  transform: rotateX(-100deg);
}

.faq-chest.unlocked .faq-lock {
  opacity: 0;
  transform: scale(0);
}

.faq-chest.unlocked .faq-hint {
  display: none;
}

.faq-chest.unlocked .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-chest.unlocked .faq-answer.hidden {
  display: block;
}

.faq-chest:hover:not(.unlocked) {
  transform: scale(1.02);
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.95);
  border-top: 2px solid rgba(255, 215, 0, 0.4);
  padding: 60px 0 20px;
  margin-top: 80px;
  position: relative;
  z-index: 10;
}

.footer-logo img {
  filter: brightness(1.1);
  max-height: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}

.footer-brand {
  position: relative;
  z-index: 10;
}

.footer-brand a {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #FFFFFF !important;
  margin-top: 15px;
  line-height: 1.6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
  font-size: 1rem;
}

.footer-links h4,
.footer-info h4 {
  color: #FFFFFF !important;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #E0E0E0 !important;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--treasure-gold) !important;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-info p {
  color: #E0E0E0 !important;
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
  font-size: 1rem;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #E0E0E0 !important;
}

.footer-bottom p {
  color: #E0E0E0 !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
  font-size: 0.95rem;
}

.footer-bottom a {
  color: var(--treasure-gold) !important;
  text-decoration: none;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-bottom a:hover {
  color: #FFA500 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-layout,
  .mobile-layout {
    grid-template-columns: 1fr;
  }
  
  .treasures-grid,
  .snake-games-grid,
  .faq-grid,
  .features-grid,
  .testimonials-grid,
  .security-content,
  .payment-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .treasures-grid,
  .snake-games-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .btn-hero,
  .btn-hero-outline {
    width: 100%;
    text-align: center;
  }
  
  .treasure-chest-card {
    height: 300px;
  }
}
