/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* CalmmSea Deep Ocean Color Palette */
  --primary-ocean: #1a365d;
  --secondary-aqua: #2b6cb0;
  --accent-gold: #f6ad55;
  --dark-ocean: #2d3748;
  --sand: #f7fafc;
  --light-blue: #ebf8ff;
  --text-dark: #2d3748;
  --text-light: #ffffff;
  --border-gold: #ed8936;
  --wave-blue: #3182ce;
  --deep-blue: #2c5282;
  --gradient-primary: linear-gradient(
    135deg,
    #1a365d 0%,
    #2b6cb0 50%,
    #3182ce 100%
  );
  --gradient-gold: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
  --shadow-ocean: 0 8px 32px rgba(26, 54, 93, 0.3);
  --shadow-gold: 0 4px 16px rgba(246, 173, 85, 0.4);

  /* Typography */
  --font-primary: "Playfair Display", serif;
  --font-secondary: "Open Sans", sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 20px;
  --border-radius: 12px;
  --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-blue);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.8rem;
}
h3 {
  font-size: 2.2rem;
}
h4 {
  font-size: 1.8rem;
}

p {
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.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;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: var(--shadow-ocean);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--primary-ocean);
  border: 2px solid var(--primary-ocean);
}

.btn-outline:hover {
  background: var(--primary-ocean);
  color: var(--text-light);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.2rem;
}

.btn-secondary {
  background: var(--dark-ocean);
  color: var(--text-light);
}

.btn-secondary:hover {
  background: var(--deep-blue);
}

/* Header */
.header {
  background: var(--gradient-primary);
  backdrop-filter: blur(15px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  border-bottom: 4px solid var(--accent-gold);
  box-shadow: var(--shadow-ocean);
  position: relative;
}

.header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-gold),
    transparent
  );
  opacity: 0.3;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.header-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 20px;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-center {
  display: flex;
  justify-content: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-end;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 50%;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.logo:hover .logo-icon {
  transform: rotate(10deg);
  box-shadow: 0 8px 25px rgba(246, 173, 85, 0.6);
}

.logo-text-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent-gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1;
}

.logo-subtitle {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.play-now-btn {
  background: var(--gradient-gold);
  color: var(--text-dark);
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.play-now-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.play-now-btn:hover::before {
  left: 100%;
}

.play-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(246, 173, 85, 0.6);
  background: linear-gradient(135deg, #ed8936 0%, #f6ad55 100%);
}

.play-now-btn span {
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  min-height: 100dvh; /* Dynamic viewport height for mobile */
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    135deg,
    #0f172a 0%,
    #1e293b 25%,
    #334155 50%,
    #1e293b 75%,
    #0f172a 100%
  );
  background-attachment: fixed;
  overflow: hidden;
  padding: clamp(80px, 8vw, 120px) 0 clamp(60px, 6vw, 80px);
  isolation: isolate;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  will-change: transform;
  contain: layout style paint;
}

.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-gold),
    transparent
  );
  opacity: 0.1;
  animation: wave-motion 6s ease-in-out infinite;
}

.wave1 {
  animation-delay: 0s;
}

.wave2 {
  animation-delay: 2s;
  opacity: 0.05;
}

.wave3 {
  animation-delay: 4s;
  opacity: 0.03;
}

@keyframes wave-motion {
  0%,
  100% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(0%);
  }
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 8s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  box-shadow: 0 0 10px var(--accent-gold);
  will-change: transform, opacity;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  top: 40%;
  left: 80%;
  animation-delay: 2s;
}
.particle:nth-child(3) {
  top: 60%;
  left: 20%;
  animation-delay: 4s;
}
.particle:nth-child(4) {
  top: 80%;
  left: 70%;
  animation-delay: 6s;
}
.particle:nth-child(5) {
  top: 30%;
  left: 50%;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--text-dark);
  padding: clamp(6px, 1vw, 8px) clamp(16px, 3vw, 20px);
  border-radius: 25px;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: clamp(16px, 3vw, 20px);
  box-shadow: var(--shadow-gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes titleGlow {
  0% {
    filter: brightness(1) drop-shadow(0 0 10px rgba(246, 173, 85, 0.3));
  }
  100% {
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(246, 173, 85, 0.6));
  }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #f8fafc;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.5vw, 10px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.title-line {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 50%, #f6ad55 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-subline {
  font-size: 2rem;
  font-weight: 600;
  color: #cbd5e1;
  opacity: 0.9;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: #e2e8f0;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
  opacity: 0.9;
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.8;
  max-width: 500px;
  opacity: 0.9;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-stats {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  margin: clamp(20px, 4vw, 30px) 0;
  padding: clamp(16px, 3vw, 20px);
  border-top: 1px solid rgba(246, 173, 85, 0.3);
  border-bottom: 1px solid rgba(246, 173, 85, 0.3);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(246, 173, 85, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  gap: clamp(16px, 3vw, 20px);
  flex-wrap: wrap;
  margin-top: clamp(24px, 4vw, 40px);
  align-items: center;
}

.hero-actions .btn {
  padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 32px);
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  text-decoration: none;
  white-space: nowrap;
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
  color: #1e293b;
  box-shadow: 0 8px 25px rgba(246, 173, 85, 0.4);
  border: 1px solid rgba(246, 173, 85, 0.3);
}

.hero-actions .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(246, 173, 85, 0.6);
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
  filter: brightness(1.1);
}

.hero-actions .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  border: 2px solid rgba(246, 173, 85, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 12px;
}

.hero-actions .btn-outline:hover {
  background: rgba(246, 173, 85, 0.1);
  border-color: #f6ad55;
  transform: translateY(-3px) scale(1.02);
  color: #f6ad55;
  box-shadow: 0 8px 25px rgba(246, 173, 85, 0.3);
}

.hero-actions .btn-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.hero-actions .btn:hover .btn-icon {
  transform: rotate(45deg) scale(1.1);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px;
}

.hero-visual .game-preview {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.game-preview {
  position: relative;
  width: 100%;
  margin: 100px 0px;
}

.game-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 3px solid #f6ad55;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 20px;
  transition: all 0.4s ease;
}

.game-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}

.game-preview-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: all 0.4s ease;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.game-preview-img:hover {
  transform: scale(1.02);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 41, 59, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.4s ease;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  cursor: pointer;
  user-select: none;
}

.game-frame:hover .game-overlay {
  opacity: 1;
}

.game-overlay:hover {
  background: rgba(30, 41, 59, 0.95);
  transform: scale(1.02);
}

.game-overlay:active {
  transform: scale(0.98);
}

.play-indicator {
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
  color: #1e293b;
  padding: 18px 30px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(246, 173, 85, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.play-indicator:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(246, 173, 85, 0.7);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-coin {
  position: absolute;
  font-size: 2rem;
  animation: float-coin 4s ease-in-out infinite;
}

.floating-coin:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-coin:nth-child(2) {
  top: 20%;
  right: 10%;
  animation-delay: 1.5s;
}

.floating-coin:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 3s;
}

@keyframes float-coin {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
  }
}

/* Game Preview Section */
.game-preview {
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  color: #1e293b;
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #64748b;
  font-weight: 400;
  line-height: 1.6;
}

.game-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.game-description {
  background: rgba(255, 255, 255, 0.8);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-description h3 {
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
}

.game-description p {
  color: #475569;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.game-features {
  list-style: none;
  margin-bottom: 2rem;
}

.game-features li {
  padding: 12px 0;
  color: #475569;
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.game-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: #f6ad55;
  font-weight: bold;
  font-size: 1.2rem;
}

.game-features li:hover {
  color: #1e293b;
  transform: translateX(5px);
}

.game-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  max-width: 100%;
  transition: all 0.4s ease;
  border: 3px solid rgba(246, 173, 85, 0.2);
}

.game-img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

/* Features Section */
.features {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--dark-ocean), var(--primary-ocean));
  color: var(--text-light);
}

.features .section-title {
  color: var(--accent-gold);
  text-align: center;
}

.features .section-subtitle {
  color: var(--sand);
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--secondary-aqua));
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
}

.feature-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
}

.feature-icon svg {
  filter: drop-shadow(0 4px 8px rgba(218, 165, 32, 0.3));
  transition: filter 0.3s ease;
}

.feature-card:hover .feature-icon svg {
  filter: drop-shadow(0 6px 12px rgba(218, 165, 32, 0.5));
}

.feature-card h3 {
  color: var(--accent-gold);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.feature-card p {
  color: var(--sand);
  line-height: 1.6;
}

/* About Section */
.about {
  padding: var(--section-padding);
  background: var(--light-blue);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  color: var(--primary-ocean);
  margin-bottom: 2rem;
}

.about-text p {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  object-fit: cover;
  max-width: 100%;
}

/* Testimonials Section */
.testimonials {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--sand) 100%);
}

.testimonials .section-title {
  color: var(--primary-ocean);
  text-align: center;
}

.testimonials .section-subtitle {
  color: var(--dark-ocean);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 2px solid var(--accent-gold);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-ocean);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-gold);
  border-color: var(--border-gold);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-rating {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.testimonial-content p {
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.6;
  font-size: 1.1rem;
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 3rem;
  color: var(--accent-gold);
  position: absolute;
  top: -10px;
  left: -15px;
  font-family: var(--font-primary);
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(246, 173, 85, 0.3);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-gold);
}

.author-info h4 {
  color: var(--primary-ocean);
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.author-info span {
  color: var(--dark-ocean);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Contact Section */
.contact {
  padding: var(--section-padding);
  background: linear-gradient(
    135deg,
    var(--primary-ocean),
    var(--secondary-aqua)
  );
  color: var(--text-light);
  text-align: center;
}

.contact h2 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--sand);
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item strong {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.contact-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--accent-gold);
}

/* FAQ Section */
.faq {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--sand) 100%);
}

.faq .section-title {
  color: var(--primary-ocean);
  text-align: center;
}

.faq .section-subtitle {
  color: var(--dark-ocean);
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 60px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 2px solid var(--accent-gold);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-ocean);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: var(--gradient-gold);
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #ed8936 0%, #f6ad55 100%);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 25px 30px;
  max-height: 200px;
}

.faq-answer p {
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

/* Gambling Awareness Section */
.gambling-awareness {
  padding: 60px 0;
  background: var(--dark-ocean);
  color: var(--text-light);
  text-align: center;
}

.awareness-content h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.awareness-content p {
  color: var(--sand);
  margin-bottom: 2rem;
}

.awareness-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.awareness-logo {
  height: 100px;
  width: 250px;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(218, 165, 32, 0.2);
}

.awareness-logo:hover {
  opacity: 1;
  transform: scale(1.1);
  background: rgba(218, 165, 32, 0.1);
  border-color: rgba(218, 165, 32, 0.4);
}

/* Footer */
.footer {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 80px 0 20px;
  border-top: 4px solid var(--accent-gold);
  position: relative;
  overflow: hidden;
}

.footer-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-gold),
    transparent
  );
  opacity: 0.1;
  animation: wave-motion 8s ease-in-out infinite;
}

.footer-wave:nth-child(2) {
  animation-delay: 4s;
  opacity: 0.05;
}

.footer::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-gold),
    transparent
  );
  opacity: 0.3;
  clip-path: polygon(0 100%, 100% 100%, 100% 50%, 0 0);
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(246, 173, 85, 0.3);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
  overflow: hidden;
}

.footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.footer-logo:hover .footer-logo-icon {
  transform: rotate(10deg);
  box-shadow: 0 8px 25px rgba(246, 173, 85, 0.6);
}

.footer-logo-text h3 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-gold);
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-logo-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.8;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  color: var(--sand);
  line-height: 1.6;
  font-size: 1rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(246, 173, 85, 0.2);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--gradient-gold);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: var(--sand);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-column ul li a:hover {
  color: var(--accent-gold);
}

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--accent-gold);
}

.footer-section p {
  color: var(--sand);
  line-height: 1.6;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-disclaimer {
  background: rgba(246, 173, 85, 0.1);
  border: 2px solid var(--accent-gold);
  border-radius: var(--border-radius);
  padding: 25px;
  position: relative;
}

.disclaimer-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--text-dark);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-gold);
}

.copyright-info {
  text-align: right;
}

.copyright-info p {
  color: var(--sand);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.footer-disclaimer p {
  color: var(--sand);
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.copyright-info {
  text-align: right;
}

.copyright-info p {
  color: var(--sand);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.age-badge {
  background: var(--gradient-gold);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  text-align: center;
  min-width: 60px;
}

.footer-disclaimer {
  flex: 1;
  min-width: 300px;
}

.footer-disclaimer p {
  color: var(--sand);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-copyright p {
  color: var(--sand);
  font-size: 0.9rem;
}

.age-badge {
  background: var(--accent-gold);
  color: var(--dark-ocean);
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.8rem;
}

/* Game Page Styles */
.game-page .hero {
  min-height: 50vh;
}

.game-section {
  padding: var(--section-padding);
  background: var(--light-blue);
}

.game-header {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
}

.game-header h1 {
  color: var(--primary-ocean);
  margin-bottom: 1rem;
}

.game-header p {
  color: var(--dark-ocean);
  font-size: 1.2rem;
}

.game-container {
  margin-bottom: 60px;
}

.game-frame-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background: var(--dark-ocean);
  border: 3px solid var(--accent-gold);
}

.game-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: var(--dark-ocean);
}

.game-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-card {
  background: var(--sand);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--accent-gold);
}

.info-card h3 {
  color: var(--primary-ocean);
  margin-bottom: 1rem;
}

.info-card ul {
  list-style: none;
}

.info-card ul li {
  padding: 5px 0;
  color: var(--text-dark);
  position: relative;
  padding-left: 20px;
}

.info-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;

  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  border: 2px solid var(--accent-gold);
}

.popup-overlay.show .popup-content {
  transform: scale(1);
}

.popup-header {
  background: linear-gradient(
    135deg,
    var(--primary-ocean),
    var(--secondary-aqua)
  );
  color: var(--text-light);
  padding: 20px;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  text-align: center;
}

.popup-header h2 {
  margin: 0;
  color: var(--text-light);
}

.popup-body {
  padding: 30px;
  text-align: center;
}

.popup-body p {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.popup-footer {
  padding: 20px 30px 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Legal Pages Styles */
.legal-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--sand) 100%);
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 60px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 2px solid var(--accent-gold);
}

.legal-content h1 {
  color: var(--primary-ocean);
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 3px solid var(--accent-gold);
  padding-bottom: 20px;
}

.last-updated {
  text-align: center;
  color: var(--dark-ocean);
  font-style: italic;
  margin-bottom: 40px;
  font-size: 0.9rem;
}

.legal-text h2 {
  color: var(--primary-ocean);
  font-size: 1.8rem;
  margin: 40px 0 20px;
  padding-left: 20px;
  border-left: 4px solid var(--accent-gold);
}

.legal-text h3 {
  color: var(--secondary-aqua);
  font-size: 1.4rem;
  margin: 30px 0 15px;
  padding-left: 15px;
  border-left: 3px solid var(--dark-ocean);
}

.legal-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-dark);
}

.legal-text ul {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-text li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.legal-text a {
  color: var(--primary-ocean);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.legal-text a:hover {
  color: var(--secondary-aqua);
  border-bottom-color: var(--secondary-aqua);
}

.important-notice {
  background: linear-gradient(
    135deg,
    var(--primary-ocean),
    var(--secondary-aqua)
  );
  color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  margin: 40px 0;
  border: 3px solid var(--accent-gold);
  box-shadow: 0 8px 25px rgba(11, 61, 92, 0.3);
}

.important-notice h3 {
  color: var(--accent-gold);
  border: none;
  padding: 0;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.important-notice p {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--accent-gold);
  margin: 3px 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);
}

/* Responsive Design */
/* Large Desktop */
@media (min-width: 1400px) {
  .hero {
    padding: clamp(100px, 10vw, 140px) 0 clamp(80px, 8vw, 120px);
  }

  .hero-content {
    gap: clamp(80px, 8vw, 120px);
    max-width: 1400px;
  }

  .hero-title {
    font-size: clamp(4rem, 6vw, 5rem);
  }

  .hero-subtitle {
    font-size: clamp(1.6rem, 3vw, 2rem);
  }

  .hero-description {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    max-width: 600px;
  }

  .hero-stats {
    gap: clamp(40px, 5vw, 60px);
    padding: clamp(20px, 3vw, 30px);
  }

  .stat-number {
    font-size: clamp(2.5rem, 4vw, 3rem);
  }

  .stat-label {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
  }

  /* Footer Large Desktop */
  .footer {
    padding: clamp(100px, 10vw, 120px) 0 clamp(30px, 3vw, 40px);
  }

  .footer-main {
    gap: clamp(80px, 8vw, 100px);
    margin-bottom: clamp(60px, 6vw, 80px);
    padding-bottom: clamp(50px, 5vw, 60px);
  }

  .footer-links {
    gap: clamp(50px, 5vw, 60px);
  }

  .footer-column h4 {
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    margin-bottom: clamp(25px, 3vw, 30px);
  }

  .footer-column ul li a {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
  }

  .footer-disclaimer {
    padding: clamp(30px, 3vw, 35px);
  }

  .footer-disclaimer p {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
  }
}

@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .hero-content {
    gap: 50px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .game-frame-wrapper {
    height: 550px;
  }

  .legal-content {
    padding: 50px 40px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .hero-content {
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .game-frame-wrapper {
    height: 500px;
  }

  .legal-content {
    padding: 40px 30px;
  }

  .legal-content h1 {
    font-size: 2.5rem;
  }

  /* Footer Tablet */
  .footer {
    padding: clamp(60px, 8vw, 80px) 0 clamp(20px, 3vw, 30px);
  }

  .footer-main {
    gap: clamp(40px, 5vw, 50px);
    margin-bottom: clamp(40px, 5vw, 50px);
    padding-bottom: clamp(30px, 4vw, 40px);
  }

  .footer-links {
    gap: clamp(30px, 4vw, 40px);
  }

  .footer-column h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: clamp(15px, 2vw, 20px);
  }

  .footer-column ul li a {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
  }

  .footer-disclaimer {
    padding: clamp(20px, 3vw, 25px);
  }

  .footer-disclaimer p {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-description {
    font-size: 1.15rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .game-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --container-padding: 0 20px;
  }

  .title-line {
    font-size: 50px;
  }

  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }

  /* Mobile Navigation */
  .mobile-menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 80px;
    display: none;
  }

  .nav.active {
    right: 0;
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 0 30px;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
  }

  .nav-link {
    display: block;
    padding: 20px 0;
    font-size: 1.1rem;
    border-bottom: none;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    color: var(--accent-gold);
    background: rgba(218, 165, 32, 0.1);
    padding-left: 10px;
    transition: all 0.3s ease;
  }

  /* Hero Section Mobile */
  .hero {
    padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 60px);
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: clamp(30px, 5vw, 40px);
    padding: 0 clamp(16px, 4vw, 20px);
    max-width: 100%;
  }

  .hero-text {
    align-items: center;
    text-align: center;
    order: 1;
  }

  .hero-visual {
    order: 2;
    margin-top: clamp(20px, 4vw, 30px);
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 3rem);
    line-height: 1.1;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
  }

  .hero-subtitle {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
  }

  .hero-description {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    max-width: 100%;
    line-height: 1.6;
    margin-bottom: clamp(1.2rem, 3vw, 1.8rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: clamp(12px, 3vw, 16px);
    text-align: center;
    margin: clamp(16px, 3vw, 24px) 0;
    padding: clamp(12px, 3vw, 16px);
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .stat-number {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .stat-label {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 2vw, 15px);
    margin-top: clamp(20px, 4vw, 30px);
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    padding: clamp(12px, 3vw, 16px) clamp(20px, 4vw, 24px);
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  }

  .hero-visual .game-preview {
    max-width: 100%;
    margin: 0;
    padding: clamp(20px, 4vw, 30px);
  }

  .game-preview-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .floating-elements {
    display: none; /* Скрываем на мобильных для лучшей производительности */
  }

  /* Game Content Mobile */
  .game-preview {
    padding: 80px 0;
  }

  .game-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .game-description {
    order: 2;
    padding: 30px 20px;
  }

  .section-header {
    margin-bottom: 60px;
    padding: 0 20px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .game-image {
    order: 1;
  }

  /* About Content Mobile */
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text {
    order: 2;
  }

  .about-image {
    order: 1;
  }

  /* Contact Info Mobile */
  .contact-info {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  /* Footer Mobile */
  .footer {
    padding: clamp(50px, 6vw, 60px) 0 clamp(15px, 2vw, 20px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: clamp(30px, 4vw, 40px);
    margin-bottom: clamp(30px, 4vw, 40px);
    padding-bottom: clamp(25px, 3vw, 30px);
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: clamp(15px, 2vw, 20px);
  }

  .footer-logo-icon {
    width: clamp(50px, 6vw, 60px);
    height: clamp(50px, 6vw, 60px);
  }

  .footer-logo-text h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
  }

  .footer-logo-text p {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  }

  .footer-description {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
    gap: clamp(12px, 2vw, 15px);
  }

  .social-link {
    width: clamp(40px, 5vw, 45px);
    height: clamp(40px, 5vw, 45px);
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: clamp(25px, 3vw, 30px);
    text-align: center;
  }

  .footer-column h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: clamp(15px, 2vw, 20px);
  }

  .footer-column ul li {
    margin-bottom: clamp(8px, 1.5vw, 12px);
  }

  .footer-column ul li a {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 25px);
    text-align: center;
  }

  .footer-disclaimer {
    padding: clamp(20px, 3vw, 25px);
    margin-bottom: clamp(15px, 2vw, 20px);
  }

  .footer-disclaimer p {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    text-align: left;
  }

  .footer-copyright {
    flex-direction: column;
    align-items: center;
    gap: clamp(10px, 2vw, 15px);
  }

  .footer-copyright p {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    text-align: center;
  }

  /* Game Frame Mobile */
  .game-frame-wrapper {
    height: 400px;
  }

  /* Features Grid Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Testimonials Mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 20px;
  }

  /* FAQ Mobile */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  /* Awareness Links Mobile */
  .awareness-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .awareness-logo {
    width: 200px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 40px 0;
    --container-padding: 0 15px;
  }

  .container {
    padding: 0 15px;
  }

  /* Typography Mobile */
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.4rem;
  }
  h4 {
    font-size: 1.2rem;
  }

  p {
    font-size: 1rem;
  }

  /* Header Mobile */
  .header {
    padding: 10px 0;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  /* Hero Mobile */
  .hero {
    padding: clamp(40px, 6vw, 60px) 0 clamp(30px, 4vw, 40px);
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-content {
    gap: clamp(20px, 4vw, 30px);
    padding: 0 clamp(12px, 3vw, 16px);
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: clamp(0.3rem, 1.5vw, 0.8rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3.5vw, 1.1rem);
    margin-bottom: clamp(0.6rem, 1.5vw, 1rem);
  }

  .hero-description {
    font-size: clamp(0.9rem, 2.8vw, 1rem);
    line-height: 1.6;
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
  }

  .hero-stats {
    gap: clamp(8px, 2vw, 12px);
    padding: clamp(8px, 2vw, 12px);
    margin: clamp(12px, 2.5vw, 20px) 0;
  }

  .stat-number {
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  }

  .stat-label {
    font-size: clamp(0.7rem, 2vw, 0.8rem);
  }

  .hero-actions {
    gap: clamp(8px, 1.5vw, 12px);
    margin-top: clamp(16px, 3vw, 24px);
  }

  .hero-actions .btn {
    padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 24px);
    font-size: clamp(0.9rem, 2vw, 1rem);
    max-width: 260px;
  }

  .hero-visual .game-preview {
    padding: clamp(15px, 3vw, 20px);
  }

  /* Buttons Mobile */
  .btn-large {
    padding: 14px 28px;
    font-size: 1.1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  /* Game Frame Mobile */
  .game-frame-wrapper {
    height: 300px;
    border-radius: 0;
  }

  /* Features Mobile */
  .feature-card {
    padding: 25px 20px;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .feature-card p {
    font-size: 0.95rem;
  }

  /* Game Info Mobile */
  .game-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-card {
    padding: 20px;
  }

  /* Popup Mobile */
  .popup-content {
    width: 95%;
    margin: 0 10px;
  }

  .popup-footer {
    flex-direction: column;
    gap: 10px;
  }

  .popup-footer .btn {
    width: 100%;
  }

  .popup-body {
    padding: 20px;
  }

  .popup-header {
    padding: 15px;
  }

  /* Legal pages mobile styles */
  .legal-content {
    padding: 30px 20px;
    margin: 0 10px;
  }

  .legal-content h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .legal-text h2 {
    font-size: 1.4rem;
    padding-left: 10px;
    margin: 30px 0 15px;
  }

  .legal-text h3 {
    font-size: 1.2rem;
    padding-left: 10px;
    margin: 25px 0 10px;
  }

  .legal-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .important-notice {
    padding: 20px;
    margin: 30px 0;
  }

  .important-notice h3 {
    font-size: 1.3rem;
  }

  .important-notice p {
    font-size: 1rem;
  }

  /* Footer Small Mobile */
  .footer {
    padding: clamp(40px, 5vw, 50px) 0 clamp(12px, 2vw, 15px);
  }

  .footer-main {
    gap: clamp(25px, 3vw, 30px);
    margin-bottom: clamp(25px, 3vw, 30px);
    padding-bottom: clamp(20px, 2.5vw, 25px);
  }

  .footer-logo-icon {
    width: clamp(45px, 5vw, 50px);
    height: clamp(45px, 5vw, 50px);
  }

  .footer-logo-text h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  }

  .footer-logo-text p {
    font-size: clamp(0.75rem, 1.3vw, 0.8rem);
  }

  .footer-description {
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
  }

  .footer-social {
    gap: clamp(10px, 1.5vw, 12px);
  }

  .social-link {
    width: clamp(35px, 4vw, 40px);
    height: clamp(35px, 4vw, 40px);
  }

  .footer-links {
    gap: clamp(20px, 2.5vw, 25px);
  }

  .footer-column h4 {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: clamp(12px, 1.5vw, 15px);
  }

  .footer-column ul li {
    margin-bottom: clamp(6px, 1vw, 8px);
  }

  .footer-column ul li a {
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
  }

  .footer-bottom {
    gap: clamp(15px, 2vw, 20px);
  }

  .footer-disclaimer {
    padding: clamp(15px, 2.5vw, 20px);
    margin-bottom: clamp(12px, 1.5vw, 15px);
  }

  .footer-disclaimer p {
    font-size: clamp(0.8rem, 1.5vw, 0.85rem);
    line-height: 1.4;
  }

  .footer-copyright {
    gap: clamp(8px, 1.5vw, 10px);
  }

  .footer-copyright p {
    font-size: clamp(0.75rem, 1.3vw, 0.8rem);
  }

  /* Awareness Mobile */
  .awareness-logo {
    width: 180px;
    height: 70px;
  }

  /* Contact Mobile */
  .contact-item {
    text-align: center;
  }

  .contact-item strong {
    font-size: 1rem;
  }

  /* Game Page Mobile */
  .game-header h1 {
    font-size: 2rem;
  }

  .game-header p {
    font-size: 1.1rem;
  }
}

/* Extra Small Devices */
@media (max-width: 320px) {
  :root {
    --section-padding: 30px 0;
    --container-padding: 0 10px;
  }

  .title-line {
    font-size: 40px;
  }

  .container {
    padding: 0 10px;
  }

  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.2rem;
  }

  .hero {
    padding: clamp(30px, 5vw, 40px) 0 clamp(20px, 3vw, 30px);
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-content {
    gap: clamp(15px, 3vw, 20px);
    padding: 0 clamp(8px, 2vw, 12px);
  }

  .hero-title {
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    line-height: 1.1;
    margin-bottom: clamp(0.2rem, 1vw, 0.5rem);
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin-bottom: clamp(0.4rem, 1vw, 0.8rem);
  }

  .hero-description {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    line-height: 1.5;
    margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
  }

  .hero-stats {
    gap: clamp(6px, 1.5vw, 8px);
    padding: clamp(6px, 1.5vw, 8px);
    margin: clamp(8px, 2vw, 12px) 0;
  }

  .stat-number {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }

  .stat-label {
    font-size: clamp(0.6rem, 1.8vw, 0.7rem);
  }

  .hero-actions {
    gap: clamp(6px, 1vw, 8px);
    margin-top: clamp(12px, 2vw, 16px);
  }

  .hero-actions .btn {
    padding: clamp(8px, 1.5vw, 10px) clamp(16px, 3vw, 20px);
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    max-width: 240px;
  }

  .hero-visual .game-preview {
    padding: clamp(10px, 2vw, 15px);
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 12px 24px;
    font-size: 1rem;
  }

  /* Footer Extra Small Mobile */
  .footer {
    padding: clamp(30px, 4vw, 40px) 0 clamp(10px, 1.5vw, 12px);
  }

  .footer-main {
    gap: clamp(20px, 2.5vw, 25px);
    margin-bottom: clamp(20px, 2.5vw, 25px);
    padding-bottom: clamp(15px, 2vw, 20px);
  }

  .footer-logo-icon {
    width: clamp(40px, 4vw, 45px);
    height: clamp(40px, 4vw, 45px);
  }

  .footer-logo-text h3 {
    font-size: clamp(1.2rem, 2vw, 1.3rem);
  }

  .footer-logo-text p {
    font-size: clamp(0.7rem, 1.2vw, 0.75rem);
  }

  .footer-description {
    font-size: clamp(0.8rem, 1.3vw, 0.85rem);
  }

  .footer-social {
    gap: clamp(8px, 1.2vw, 10px);
  }

  .social-link {
    width: clamp(32px, 3.5vw, 35px);
    height: clamp(32px, 3.5vw, 35px);
  }

  .footer-links {
    gap: clamp(15px, 2vw, 20px);
  }

  .footer-column h4 {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    margin-bottom: clamp(10px, 1.2vw, 12px);
  }

  .footer-column ul li {
    margin-bottom: clamp(5px, 0.8vw, 6px);
  }

  .footer-column ul li a {
    font-size: clamp(0.8rem, 1.3vw, 0.85rem);
  }

  .footer-bottom {
    gap: clamp(12px, 1.5vw, 15px);
  }

  .footer-disclaimer {
    padding: clamp(12px, 2vw, 15px);
    margin-bottom: clamp(10px, 1.2vw, 12px);
  }

  .footer-disclaimer p {
    font-size: clamp(0.75rem, 1.3vw, 0.8rem);
    line-height: 1.3;
  }

  .footer-copyright {
    gap: clamp(6px, 1vw, 8px);
  }

  .footer-copyright p {
    font-size: clamp(0.7rem, 1.2vw, 0.75rem);
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .logo-img {
    width: 35px;
    height: 35px;
  }

  .game-frame-wrapper {
    height: 250px;
  }

  .feature-card {
    padding: 20px 15px;
  }

  .info-card {
    padding: 15px;
  }

  .legal-content {
    padding: 20px 15px;
    margin: 0 5px;
  }

  .legal-content h1 {
    font-size: 18px;
  }

  .popup-content {
    width: 98%;
    margin: 0 5px;
  }

  .awareness-logo {
    width: 150px;
    height: 60px;
  }
}

/* Landscape Mobile */
/* Tablet Landscape */
@media (max-width: 1024px) and (orientation: landscape) {
  .hero {
    min-height: 90vh;
    padding: clamp(40px, 6vw, 60px) 0 clamp(30px, 4vw, 50px);
  }

  .hero-content {
    gap: clamp(40px, 6vw, 60px);
    padding-top: 40px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 5vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  }

  .hero-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
  }

  .game-frame-wrapper {
    height: 350px;
  }

  /* Footer Landscape Tablet */
  .footer {
    padding: clamp(50px, 6vw, 70px) 0 clamp(15px, 2vw, 25px);
  }

  .footer-main {
    gap: clamp(35px, 4vw, 45px);
    margin-bottom: clamp(35px, 4vw, 45px);
    padding-bottom: clamp(25px, 3vw, 35px);
  }

  .footer-links {
    gap: clamp(25px, 3vw, 35px);
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 80vh;
    padding: clamp(30px, 4vw, 50px) 0 clamp(20px, 3vw, 40px);
  }

  .hero-content {
    gap: clamp(25px, 4vw, 35px);
    padding-top: 30px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
  }

  .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
  }

  .hero-description {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  }

  .hero-stats {
    flex-direction: row;
    justify-content: center;
    gap: clamp(20px, 3vw, 30px);
  }

  .game-frame-wrapper {
    height: 300px;
  }

  .legal-section {
    padding: 80px 0 60px;
  }

  /* Footer Landscape Mobile */
  .footer {
    padding: clamp(35px, 4vw, 45px) 0 clamp(10px, 1.5vw, 15px);
  }

  .footer-main {
    gap: clamp(20px, 2.5vw, 25px);
    margin-bottom: clamp(20px, 2.5vw, 25px);
    padding-bottom: clamp(15px, 2vw, 20px);
  }

  .footer-links {
    gap: clamp(15px, 2vw, 20px);
  }

  .footer-column h4 {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    margin-bottom: clamp(8px, 1vw, 10px);
  }

  .footer-column ul li {
    margin-bottom: clamp(4px, 0.8vw, 6px);
  }

  .footer-column ul li a {
    font-size: clamp(0.8rem, 1.2vw, 0.85rem);
  }

  .footer-disclaimer {
    padding: clamp(12px, 1.5vw, 15px);
    margin-bottom: clamp(8px, 1vw, 10px);
  }

  .footer-disclaimer p {
    font-size: clamp(0.75rem, 1.2vw, 0.8rem);
    line-height: 1.3;
  }

  .footer-copyright p {
    font-size: clamp(0.7rem, 1vw, 0.75rem);
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo-img,
  .hero-img,
  .game-img,
  .about-img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .mobile-menu-toggle,
  .popup-overlay {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .legal-content {
    box-shadow: none;
    border: 1px solid #ccc;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    page-break-after: avoid;
  }

  .feature-card,
  .info-card {
    page-break-inside: avoid;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card {
  animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(2) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(5) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(6) {
  animation-delay: 0.5s;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
    min-width: 44px;
  }

  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .mobile-menu-toggle {
    min-height: 44px;
    min-width: 44px;
    padding: 10px;
  }

  .feature-card:hover {
    transform: none;
  }

  .hero-img:hover {
    transform: none;
  }

  .awareness-logo:hover {
    transform: none;
  }
}

/* Modern Animations and Effects */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* AOS Animation Classes */
[data-aos="fade-up"] {
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="fade-right"] {
  transform: translateX(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

/* Enhanced Button Animations */
.hero-actions .btn {
  position: relative;
  overflow: hidden;
}

.hero-actions .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;
}

.hero-actions .btn:hover::before {
  left: 100%;
}

/* Enhanced Particle Effects */
.particle::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: radial-gradient(circle, var(--accent-gold), transparent);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

/* Enhanced Wave Animations */
.wave {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(246, 173, 85, 0.1) 25%,
    rgba(246, 173, 85, 0.3) 50%,
    rgba(246, 173, 85, 0.1) 75%,
    transparent 100%
  );
  animation: wave-motion 6s ease-in-out infinite;
}

@keyframes wave-motion {
  0%,
  100% {
    transform: translateX(-100%) scaleX(1);
    opacity: 0.1;
  }
  50% {
    transform: translateX(0%) scaleX(1.2);
    opacity: 0.3;
  }
}

/* Enhanced Floating Elements */
.floating-coin {
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform;
}

.floating-coin::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: radial-gradient(circle, rgba(246, 173, 85, 0.2), transparent);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

/* Performance Optimizations */
.hero-background,
.hero-particles,
.particle,
.wave,
.floating-coin {
  will-change: transform, opacity;
  contain: layout style paint;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-img:hover {
    transform: none;
  }

  .feature-card:hover {
    transform: none;
  }
}

/* Loading animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(218, 165, 32, 0.3);
  border-radius: 50%;
  border-top-color: var(--accent-gold);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
