@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 {
  --soda-orange: #FF4500;
  --fizzy-orange: #FF6B00;
  --bubble-orange: #FF8C00;
  --foam-white: #FFF8DC;
  --bubble-white: #FFFFFF;
  --soda-dark: #CC3700;
  --carbonation: #FFA500;
  --bubble-clear: rgba(255, 255, 255, 0.8);
  --foam-gradient: linear-gradient(135deg, #FFF8DC 0%, #FFE4B5 50%, #FFD700 100%);
  --soda-gradient: linear-gradient(135deg, #FF4500 0%, #FF6B00 50%, #FF8C00 100%);
  --bubble-gradient: linear-gradient(45deg, #FF4500, #FF6B00, #FFA500, #FFD700);
  --fizzy-bg: linear-gradient(135deg, #FFF8DC 0%, #FFE4B5 30%, #FFD4B8 70%, #FFB366 100%);
  --shadow-soft: 0 10px 30px rgba(255, 69, 0, 0.2);
  --shadow-medium: 0 20px 40px rgba(255, 69, 0, 0.3);
  --shadow-strong: 0 30px 60px rgba(255, 69, 0, 0.4);
  --bubble-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

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

body {
  font-family: 'Ubuntu', sans-serif;
  background: var(--fizzy-bg);
  background-attachment: fixed;
  color: var(--soda-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 165, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: sodaFizz 25s ease-in-out infinite;
}

@keyframes sodaFizz {
  0%, 100% { transform: translateX(0) translateY(0) scale(1); }
  25% { transform: translateX(-15px) translateY(-8px) scale(1.02); }
  50% { transform: translateX(15px) translateY(8px) scale(0.98); }
  75% { transform: translateX(-8px) translateY(15px) scale(1.01); }
}

/* Floating Bubbles */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.6)"/><circle cx="30" cy="20" r="1.5" fill="rgba(255,255,255,0.4)"/><circle cx="50" cy="15" r="1" fill="rgba(255,255,255,0.7)"/><circle cx="70" cy="25" r="2.5" fill="rgba(255,255,255,0.5)"/><circle cx="90" cy="10" r="1.8" fill="rgba(255,255,255,0.6)"/><circle cx="15" cy="40" r="1.2" fill="rgba(255,255,255,0.5)"/><circle cx="35" cy="35" r="2" fill="rgba(255,255,255,0.4)"/><circle cx="55" cy="45" r="1.5" fill="rgba(255,255,255,0.6)"/><circle cx="75" cy="40" r="1" fill="rgba(255,255,255,0.7)"/><circle cx="95" cy="35" r="2.2" fill="rgba(255,255,255,0.5)"/><circle cx="20" cy="60" r="1.8" fill="rgba(255,255,255,0.4)"/><circle cx="40" cy="65" r="1.3" fill="rgba(255,255,255,0.6)"/><circle cx="60" cy="70" r="2" fill="rgba(255,255,255,0.5)"/><circle cx="80" cy="60" r="1.5" fill="rgba(255,255,255,0.7)"/><circle cx="5" cy="80" r="1" fill="rgba(255,255,255,0.6)"/><circle cx="25" cy="85" r="2.3" fill="rgba(255,255,255,0.4)"/><circle cx="45" cy="80" r="1.7" fill="rgba(255,255,255,0.5)"/><circle cx="65" cy="85" r="1.4" fill="rgba(255,255,255,0.6)"/><circle cx="85" cy="80" r="1.9" fill="rgba(255,255,255,0.4)"/></svg>') repeat;
  pointer-events: none;
  z-index: -1;
  animation: bubbleFloat 30s linear infinite;
}

@keyframes bubbleFloat {
  0% { transform: translateY(100vh) translateX(0); }
  100% { transform: translateY(-100vh) translateX(20px); }
}


a {
  text-decoration: none;
  color: var(--accent-primary);
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.btn {
  padding: 18px 36px;
  border: none;
  border-radius: 25px 25px 15px 15px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 1;
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
}

.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.6s;
  z-index: -1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  z-index: -1;
}

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

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--soda-gradient);
  color: var(--foam-white);
  box-shadow: 
    var(--shadow-medium),
    inset 0 2px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  border: 2px solid var(--foam-white);
}

.btn-primary:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    var(--shadow-strong),
    0 0 30px rgba(255, 69, 0, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.6);
  border-color: var(--carbonation);
}

.btn-secondary {
  background: var(--bubble-clear);
  color: var(--soda-orange);
  border: 3px solid var(--soda-orange);
  position: relative;
  backdrop-filter: blur(10px);
}

.btn-secondary::before {
  background: var(--soda-gradient);
  z-index: -1;
  transition: all 0.4s ease;
}

.btn-secondary:hover {
  color: var(--foam-white);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    var(--shadow-medium),
    0 0 25px rgba(255, 69, 0, 0.4);
  border-color: var(--carbonation);
}

.btn-secondary:hover::before {
  left: 0;
  width: 100%;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 107, 53, 0.1);
  z-index: 1;
}

.navbar {
  background-color: var(--secondary-color);
  padding: 0;
  box-shadow: 0 2px 20px rgba(255, 107, 53, 0.1);
  border-bottom: 3px solid var(--primary-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 45px;
  width: auto;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  transition: 0.3s;
}

.navbar-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  background-color: var(--third-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.navbar .auth-buttons {
  display: flex;
  gap: 10px;
}

.btn-login {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.btn-register {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-login:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-register:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

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

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--soda-dark);
  margin-bottom: 20px;
  position: relative;
  animation: slideInUp 1s ease-out;
}

.section-header h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
  z-index: -1;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--gradient-1);
  border-radius: 3px;
  animation: expandWidth 1s ease-out 0.5s both;
}

@keyframes expandWidth {
  from { width: 0; }
  to { width: 100px; }
}

.section-header p {
  font-size: 1.1rem;
  color: var(--soda-dark);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.8;
}

.hero {
  position: relative;
  background: var(--soda-gradient);
  padding: 100px 0;
  margin: 20px 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  min-height: 600px;
  transform-style: preserve-3d;
  perspective: 1000px;
  border: 4px solid var(--foam-white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--foam-gradient);
  border-radius: 50px 50px 0 0;
  z-index: 2;
  animation: foamBubble 3s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 30%),
    radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.25) 0%, transparent 25%);
  animation: sodaBubbles 20s linear infinite;
  z-index: 1;
}

@keyframes foamBubble {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.1); }
}

@keyframes sodaBubbles {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="15" cy="15" r="3" fill="rgba(255,255,255,0.8)" stroke="rgba(255,255,255,0.3)" stroke-width="0.5"/><circle cx="35" cy="25" r="2" fill="rgba(255,255,255,0.6)" stroke="rgba(255,255,255,0.2)" stroke-width="0.3"/><circle cx="55" cy="20" r="1.5" fill="rgba(255,255,255,0.7)" stroke="rgba(255,255,255,0.4)" stroke-width="0.2"/><circle cx="75" cy="30" r="2.5" fill="rgba(255,255,255,0.5)" stroke="rgba(255,255,255,0.3)" stroke-width="0.4"/><circle cx="90" cy="15" r="2.2" fill="rgba(255,255,255,0.6)" stroke="rgba(255,255,255,0.2)" stroke-width="0.3"/><circle cx="10" cy="45" r="1.8" fill="rgba(255,255,255,0.7)" stroke="rgba(255,255,255,0.3)" stroke-width="0.2"/><circle cx="30" cy="50" r="2.8" fill="rgba(255,255,255,0.4)" stroke="rgba(255,255,255,0.2)" stroke-width="0.5"/><circle cx="50" cy="55" r="1.2" fill="rgba(255,255,255,0.8)" stroke="rgba(255,255,255,0.4)" stroke-width="0.1"/><circle cx="70" cy="45" r="2.1" fill="rgba(255,255,255,0.5)" stroke="rgba(255,255,255,0.3)" stroke-width="0.3"/><circle cx="85" cy="50" r="1.6" fill="rgba(255,255,255,0.6)" stroke="rgba(255,255,255,0.2)" stroke-width="0.2"/></svg>') repeat;
  animation: carbonationRise 20s infinite linear;
}

.hero-particles::after {
  animation: carbonationRise 30s infinite linear reverse;
  opacity: 0.6;
}

@keyframes carbonationRise {
  0% { transform: translateY(100vh) translateX(0px) scale(0.5); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(30px) scale(1.2); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 4;
  flex: 1;
  padding: 0 40px;
  margin-top: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bubble-white);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 2px solid var(--foam-white);
  box-shadow: var(--bubble-shadow);
}

.badge-icon {
  font-size: 1.2rem;
  color: var(--soda-orange);
}

.hero-badge span {
  color: var(--soda-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--foam-white);
  text-shadow: 
    3px 3px 6px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(255, 255, 255, 0.3),
    0 0 40px rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  line-height: 1.1;
  animation: slideInUp 1s ease-out;
  position: relative;
  font-family: 'Ubuntu', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-content h1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  animation: sodaShimmer 4s infinite;
  z-index: -1;
  border-radius: 10px;
}

@keyframes sodaShimmer {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(100%) skewX(-15deg); }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.highlight {
  background: var(--bubble-gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: sodaGradientShift 3s ease-in-out infinite;
  text-shadow: none;
  position: relative;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--bubble-gradient);
  border-radius: 3px;
  animation: sodaPulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes sodaGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes sodaPulse {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(1.1); opacity: 0.8; }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes pulse {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(1.1); opacity: 0.8; }
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.3); }
  50% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.6); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(1deg); }
  75% { transform: rotate(-1deg); }
}

/* Additional animation classes */
.float-animation {
  animation: float 3s ease-in-out infinite;
}

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

.glow-animation {
  animation: glow 2s ease-in-out infinite;
}

.wiggle-animation {
  animation: wiggle 1s ease-in-out infinite;
}

.animate-in {
  animation: slideInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  animation: slideInUp 1s ease-out 0.3s both;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.stat {
  text-align: center;
  position: relative;
  padding: 20px;
  border-radius: 50%;
  background: var(--bubble-white);
  backdrop-filter: blur(15px);
  border: 2px solid var(--foam-white);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: var(--bubble-shadow);
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: var(--bubble-gradient);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: bubbleGlow 2s ease-in-out infinite;
}

.stat:hover {
  transform: translateY(-15px) scale(1.1);
  background: var(--bubble-white);
  box-shadow: 
    0 20px 40px rgba(255, 69, 0, 0.3),
    0 0 30px rgba(255, 255, 255, 0.5);
  border-color: var(--carbonation);
}

.stat:hover::before {
  opacity: 0.3;
}

@keyframes bubbleGlow {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.1); opacity: 0.4; }
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat:hover::before {
  opacity: 1;
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--soda-orange);
  text-shadow: none;
  position: relative;
  line-height: 1;
}

.stat-number::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  transition: width 0.3s ease;
}

.stat:hover .stat-number::after {
  width: 80%;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--soda-dark);
  text-shadow: none;
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  margin-top: 40px;
  z-index: 4;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Shake the Soda Section */
.shake-soda-section {
  background: var(--fizzy-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.shake-soda-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.soda-shake-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.soda-bottle {
  width: 120px;
  height: 200px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 3;
}

.soda-bottle:hover {
  transform: scale(1.05);
}

.soda-bottle.shaking {
  animation: shakeBottle 0.5s ease-in-out infinite;
}

.bottle-body {
  width: 100%;
  height: 160px;
  background: var(--soda-gradient);
  border-radius: 20px 20px 5px 5px;
  position: relative;
  border: 4px solid var(--foam-white);
  box-shadow: 
    inset 0 0 20px rgba(255, 255, 255, 0.3),
    0 10px 30px rgba(255, 165, 0, 0.3);
  overflow: hidden;
}

.bottle-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--foam-white);
  font-weight: 700;
  font-size: 1.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.bottle-cap {
  width: 100%;
  height: 40px;
  background: var(--foam-gradient);
  border-radius: 20px 20px 0 0;
  position: absolute;
  top: -40px;
  border: 4px solid var(--foam-white);
  box-shadow: 
    inset 0 0 10px rgba(255, 255, 255, 0.5),
    0 5px 15px rgba(0, 0, 0, 0.2);
}

.bubbles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  background: var(--bubble-white);
  border-radius: 50%;
  opacity: 0.8;
  animation: bubbleRise 2s ease-out forwards;
}

@keyframes shakeBottle {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  25% { transform: translateX(-5px) rotate(-2deg); }
  75% { transform: translateX(5px) rotate(2deg); }
}

@keyframes bubbleRise {
  0% {
    opacity: 0.8;
    transform: translateY(0) scale(0.5);
  }
  50% {
    opacity: 1;
    transform: translateY(-50px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) scale(0.3);
  }
}

.shake-instructions {
  text-align: center;
  color: var(--soda-dark);
}

.shake-instructions p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.shake-btn {
  background: var(--soda-gradient);
  color: var(--foam-white);
  border: 3px solid var(--foam-white);
  padding: 15px 30px;
  border-radius: 25px 25px 15px 15px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 
    0 8px 25px rgba(255, 165, 0, 0.3),
    inset 0 2px 5px rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}

.shake-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 35px rgba(255, 165, 0, 0.4),
    inset 0 2px 5px rgba(255, 255, 255, 0.4);
}

.shake-btn:active {
  transform: translateY(0);
  box-shadow: 
    0 5px 15px rgba(255, 165, 0, 0.3),
    inset 0 2px 5px rgba(255, 255, 255, 0.3);
}

.bonus-reveal {
  text-align: center;
  position: relative;
  z-index: 4;
}

.explosion-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 165, 0, 0.6) 30%, transparent 70%);
  animation: explosion 1s ease-out forwards;
  pointer-events: none;
}

@keyframes explosion {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.bonus-amount {
  font-size: 4rem;
  font-weight: 900;
  color: var(--soda-orange);
  text-shadow: 
    3px 3px 0 var(--foam-white),
    6px 6px 10px rgba(0, 0, 0, 0.3);
  margin: 20px 0;
  animation: bonusPulse 2s ease-in-out infinite;
  position: relative;
  z-index: 5;
}

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

.bonus-message {
  font-size: 1.5rem;
  color: var(--soda-dark);
  font-weight: 600;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.claim-bonus-btn {
  font-size: 1.2rem;
  padding: 20px 40px;
  animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Design for Shake Soda */
@media (max-width: 768px) {
  .shake-soda-section {
    padding: 60px 0;
  }
  
  .soda-bottle {
    width: 100px;
    height: 170px;
  }
  
  .bottle-body {
    height: 130px;
  }
  
  .bottle-label {
    font-size: 1rem;
  }
  
  .bonus-amount {
    font-size: 3rem;
  }
  
  .bonus-message {
    font-size: 1.2rem;
  }
  
  .shake-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Testimonials Section */
.testimonials {
  background: var(--foam-white);
  padding: 80px 0;
  margin: 40px 0;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--bubble-white);
  padding: 30px;
  border-radius: 20px;
  border: 3px solid var(--foam-white);
  box-shadow: var(--bubble-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 165, 0, 0.2);
}

.testimonial-content .stars {
  color: var(--soda-orange);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-content p {
  color: var(--soda-dark);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--soda-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foam-white);
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info h4 {
  color: var(--soda-dark);
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}

.author-info span {
  color: var(--soda-orange);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Payment Methods Section */
.payment-methods {
  background: var(--fizzy-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.payment-category {
  background: var(--bubble-white);
  padding: 30px;
  border-radius: 20px;
  border: 3px solid var(--foam-white);
  box-shadow: var(--bubble-shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.payment-category h3 {
  color: var(--soda-dark);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.payment-icon {
  background: var(--soda-gradient);
  color: var(--foam-white);
  padding: 8px 16px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--foam-white);
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bubble-white);
  padding: 15px 25px;
  border-radius: 25px;
  border: 2px solid var(--foam-white);
  box-shadow: var(--bubble-shadow);
}

.security-badge i {
  color: var(--soda-orange);
  font-size: 1.2rem;
}

.security-badge span {
  color: var(--soda-dark);
  font-weight: 600;
}

/* Live Support Section */
.live-support {
  background: var(--foam-white);
  padding: 80px 0;
  margin: 40px 0;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.support-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

.support-info h2 {
  color: var(--soda-dark);
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.support-info p {
  color: var(--soda-dark);
  opacity: 0.8;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.support-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.support-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--soda-dark);
}

.support-feature i {
  color: var(--soda-orange);
  font-size: 1.2rem;
}

.support-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat-item {
  text-align: center;
  background: var(--bubble-white);
  padding: 25px;
  border-radius: 20px;
  border: 3px solid var(--foam-white);
  box-shadow: var(--bubble-shadow);
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--soda-orange);
  margin-bottom: 10px;
}

.stat-item .stat-label {
  color: var(--soda-dark);
  font-weight: 600;
}

/* Mobile App Section */
.mobile-app {
  background: var(--fizzy-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.app-info h2 {
  color: var(--soda-dark);
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.app-info p {
  color: var(--soda-dark);
  opacity: 0.8;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.app-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--soda-dark);
}

.app-feature i {
  color: var(--soda-orange);
  font-size: 1.2rem;
}

.download-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.download-btn img {
  height: 50px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.download-btn:hover img {
  transform: scale(1.05);
}

.app-preview {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 200px;
  height: 400px;
  background: var(--soda-gradient);
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bubble-white);
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
}

.app-interface {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-header {
  text-align: center;
  color: var(--soda-orange);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.app-games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  flex: 1;
}

.game-tile {
  background: var(--soda-gradient);
  border-radius: 10px;
  min-height: 60px;
}

/* Tournaments Section */
.tournaments {
  background: var(--foam-white);
  padding: 80px 0;
  margin: 40px 0;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.tournament-card {
  background: var(--bubble-white);
  padding: 30px;
  border-radius: 20px;
  border: 3px solid var(--foam-white);
  box-shadow: var(--bubble-shadow);
  position: relative;
  transition: transform 0.3s ease;
}

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

.tournament-card.featured {
  border-color: var(--soda-orange);
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.tournament-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--soda-gradient);
  color: var(--foam-white);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
}

.tournament-card h3 {
  color: var(--soda-dark);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.tournament-prize {
  color: var(--soda-orange);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.tournament-details {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.detail {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--soda-dark);
  font-size: 0.9rem;
}

.detail i {
  color: var(--soda-orange);
}

/* VIP Program Section */
.vip-program {
  background: var(--fizzy-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.vip-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.vip-info h2 {
  color: var(--soda-dark);
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.vip-info p {
  color: var(--soda-dark);
  opacity: 0.8;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.vip-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--soda-dark);
}

.benefit i {
  color: var(--soda-orange);
  font-size: 1.2rem;
}

.vip-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vip-level {
  background: var(--bubble-white);
  padding: 20px;
  border-radius: 15px;
  border: 2px solid var(--foam-white);
  box-shadow: var(--bubble-shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.level-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.vip-level h4 {
  color: var(--soda-dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.vip-level p {
  color: var(--soda-dark);
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0;
}

/* Security & Licensing Section */
.security-licensing {
  background: var(--foam-white);
  padding: 80px 0;
  margin: 40px 0;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.security-item {
  background: var(--bubble-white);
  padding: 30px;
  border-radius: 20px;
  border: 3px solid var(--foam-white);
  box-shadow: var(--bubble-shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.security-icon {
  width: 80px;
  height: 80px;
  background: var(--soda-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.security-icon i {
  color: var(--foam-white);
  font-size: 2rem;
}

.security-item h3 {
  color: var(--soda-dark);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.security-item p {
  color: var(--soda-dark);
  opacity: 0.8;
  line-height: 1.6;
}

.licensing-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.license-badge {
  background: var(--bubble-white);
  padding: 20px;
  border-radius: 15px;
  border: 2px solid var(--foam-white);
  box-shadow: var(--bubble-shadow);
  transition: transform 0.3s ease;
}

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

.license-badge img {
  height: 60px;
  border-radius: 10px;
}

/* Newsletter Section */
.newsletter {
  background: var(--fizzy-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.newsletter-info h2 {
  color: var(--soda-dark);
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.newsletter-info p {
  color: var(--soda-dark);
  opacity: 0.8;
  font-size: 1.1rem;
  line-height: 1.6;
}

.newsletter-form {
  background: var(--bubble-white);
  padding: 40px;
  border-radius: 20px;
  border: 3px solid var(--foam-white);
  box-shadow: var(--bubble-shadow);
}

.email-form {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.email-form input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid var(--foam-white);
  border-radius: 25px;
  font-size: 1rem;
  background: var(--foam-white);
  color: var(--soda-dark);
}

.email-form input:focus {
  outline: none;
  border-color: var(--soda-orange);
}

.newsletter-note {
  color: var(--soda-dark);
  opacity: 0.8;
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
  .support-content,
  .app-content,
  .vip-content,
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .vip-levels {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .app-features,
  .vip-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .testimonials-grid,
  .payment-grid,
  .tournaments-grid,
  .security-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .support-stats {
    flex-direction: row;
    gap: 20px;
  }
  
  .vip-levels {
    grid-template-columns: 1fr;
  }
  
  .download-buttons {
    justify-content: center;
  }
  
  .email-form {
    flex-direction: column;
  }
  
  .security-badges,
  .licensing-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* AI Win Predictor Section */
.ai-predictor {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.ai-predictor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.ai-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ai-interface {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-brain {
  text-align: center;
  margin-bottom: 30px;
}

.neural-network {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}

.neuron {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  position: relative;
}

.neuron::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

.ai-status {
  color: #00ffff;
  font-weight: 700;
  font-size: 1.2rem;
  animation: blink 1s ease-in-out infinite;
}

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

.prediction-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.prediction-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.prediction-card h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 1rem;
}

.win-probability, .bet-amount {
  font-size: 2rem;
  font-weight: 900;
  color: #00ffff;
  margin-bottom: 5px;
}

.confidence-level, .expected-return {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.ai-features {
  display: grid;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
  color: #00ffff;
  font-size: 1.5rem;
}

.feature-item h4 {
  color: white;
  margin-bottom: 5px;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

/* VR Casino Section */
.vr-casino {
  background: var(--foam-white);
  padding: 80px 0;
  margin: 40px 0;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.vr-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.vr-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.vr-headset {
  width: 300px;
  height: 200px;
  background: linear-gradient(45deg, #333, #666);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vr-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #1a1a2e, #16213e);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.vr-casino-floor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.vr-table, .vr-slot-machine, .vr-dealer {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 10px;
  min-height: 40px;
}

.vr-dealer {
  grid-column: 1 / -1;
  background: linear-gradient(45deg, #00ffff, #ff00ff);
}

.vr-controls {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.control-button {
  background: var(--soda-gradient);
  color: var(--foam-white);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--foam-white);
}

.vr-features h3 {
  color: var(--soda-dark);
  margin-bottom: 30px;
  font-size: 2rem;
}

.vr-feature-list {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.vr-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--soda-dark);
}

.vr-feature i {
  color: var(--soda-orange);
  font-size: 1.2rem;
}

/* Crypto Mining Section */
.crypto-mining {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.mining-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mining-rig {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mining-stats {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.mining-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-info {
  flex: 1;
}

.stat-value {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.mining-visualization {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.mining-block {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mining-block.active {
  background: linear-gradient(45deg, #00ff00, #ffff00);
  animation: mine 1s ease-in-out infinite;
}

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

.mining-info h3 {
  color: white;
  margin-bottom: 30px;
  font-size: 2rem;
}

.mining-steps {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.step {
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--soda-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--foam-white);
}

.step-content h4 {
  margin-bottom: 5px;
  color: white;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

/* Social Trading Section */
.social-trading {
  background: var(--foam-white);
  padding: 80px 0;
  margin: 40px 0;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.trading-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.trading-leaderboard h3 {
  color: var(--soda-dark);
  margin-bottom: 30px;
  font-size: 2rem;
}

.trader-list {
  display: grid;
  gap: 20px;
}

.trader-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bubble-white);
  padding: 20px;
  border-radius: 15px;
  border: 2px solid var(--foam-white);
  box-shadow: var(--bubble-shadow);
  transition: transform 0.3s ease;
}

.trader-item:hover {
  transform: translateY(-3px);
}

.trader-avatar {
  width: 50px;
  height: 50px;
  background: var(--soda-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foam-white);
  font-weight: 700;
  font-size: 1.2rem;
}

.trader-info {
  flex: 1;
}

.trader-info h4 {
  color: var(--soda-dark);
  margin-bottom: 5px;
}

.trader-stats {
  display: flex;
  gap: 15px;
  font-size: 0.9rem;
}

.win-rate {
  color: #00aa00;
  font-weight: 600;
}

.followers {
  color: var(--soda-orange);
  font-weight: 600;
}

.trader-profit {
  color: #00aa00;
  font-weight: 700;
  font-size: 1.1rem;
}

.copy-trading h3 {
  color: var(--soda-dark);
  margin-bottom: 30px;
  font-size: 2rem;
}

.copy-features {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.copy-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--soda-dark);
}

.copy-feature i {
  color: var(--soda-orange);
  font-size: 1.2rem;
}

.copy-feature h4 {
  margin-bottom: 5px;
  color: var(--soda-dark);
}

.copy-feature p {
  color: var(--soda-dark);
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0;
}

/* NFT Rewards Section */
.nft-rewards {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.nft-rewards::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.nft-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.nft-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.nft-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

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

.nft-image {
  position: relative;
  margin-bottom: 15px;
}

.nft-artwork {
  width: 100%;
  height: 150px;
  background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd23f);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.nft-rarity {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.nft-info h4 {
  color: white;
  margin-bottom: 10px;
}

.nft-value {
  color: #00ff00;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.nft-owner {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.nft-features h3 {
  color: white;
  margin-bottom: 30px;
  font-size: 2rem;
}

.nft-benefits {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.benefit i {
  color: #ffd700;
  font-size: 1.2rem;
}

/* AI Dealers Section */
.ai-dealers {
  background: var(--foam-white);
  padding: 80px 0;
  margin: 40px 0;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.dealers-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.dealer-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.dealer-avatar {
  position: relative;
}

.dealer-face {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dealer-eyes {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.eye {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  position: relative;
  animation: blink 3s ease-in-out infinite;
}

.eye::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background: black;
  border-radius: 50%;
}

.dealer-mouth {
  width: 40px;
  height: 20px;
  background: white;
  border-radius: 0 0 40px 40px;
  animation: smile 2s ease-in-out infinite;
}

@keyframes smile {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(1.2); }
}

.dealer-status {
  color: var(--soda-orange);
  font-weight: 600;
  text-align: center;
}

.dealer-info h3 {
  color: var(--soda-dark);
  margin-bottom: 20px;
  text-align: center;
}

.dealer-stats {
  display: grid;
  gap: 10px;
}

.stat {
  display: flex;
  justify-content: space-between;
  color: var(--soda-dark);
}

.stat .label {
  font-weight: 600;
}

.stat .value {
  color: var(--soda-orange);
}

.ai-capabilities h3 {
  color: var(--soda-dark);
  margin-bottom: 30px;
  font-size: 2rem;
}

.capabilities-grid {
  display: grid;
  gap: 20px;
}

.capability {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--soda-dark);
}

.capability i {
  color: var(--soda-orange);
  font-size: 1.5rem;
}

.capability h4 {
  margin-bottom: 5px;
  color: var(--soda-dark);
}

.capability p {
  color: var(--soda-dark);
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0;
}

/* Mood Detection Section */
.mood-detection {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.mood-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.mood-analyzer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.mood-camera {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #333, #666);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.camera-lens {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #1a1a2e, #16213e);
  border-radius: 50%;
  border: 3px solid #00ffff;
  position: relative;
}

.camera-lens::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #00ffff;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.mood-indicator {
  position: absolute;
  top: -50px;
  text-align: center;
}

.mood-face {
  font-size: 2rem;
  margin-bottom: 10px;
}

.mood-text {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.mood-stats {
  display: grid;
  gap: 15px;
  width: 100%;
  max-width: 300px;
}

.mood-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.stat-bar {
  flex: 1;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  border-radius: 5px;
  animation: fillBar 2s ease-in-out;
}

@keyframes fillBar {
  from { width: 0%; }
  to { width: var(--width, 50%); }
}

.adaptive-features h3 {
  color: white;
  margin-bottom: 30px;
  font-size: 2rem;
}

.adaptation-list {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.adaptation {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.adaptation i {
  color: #ff00ff;
  font-size: 1.5rem;
}

.adaptation-content h4 {
  margin-bottom: 5px;
  color: white;
}

.adaptation-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

/* Time Travel Section */
.time-travel {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.time-travel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.time-travel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.time-machine {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.time-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.time-dial {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #333, #666);
  border-radius: 50%;
  position: relative;
  border: 5px solid #00ffff;
}

.time-hand {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 60px;
  background: #00ffff;
  transform-origin: bottom center;
  animation: rotate 4s linear infinite;
}

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

.time-markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.marker {
  position: absolute;
  width: 4px;
  height: 20px;
  background: #00ffff;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.marker:nth-child(2) { transform: translateX(-50%) rotate(90deg); }
.marker:nth-child(3) { transform: translateX(-50%) rotate(180deg); }
.marker:nth-child(4) { transform: translateX(-50%) rotate(270deg); }

.time-display {
  color: #00ffff;
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid #00ffff;
}

.time-portal {
  width: 200px;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portal-ring {
  width: 100%;
  height: 100%;
  border: 4px solid #00ffff;
  border-radius: 50%;
  animation: rotate 3s linear infinite;
}

.portal-center {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-vortex {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  animation: pulse 1s ease-in-out infinite;
}

.time-features h3 {
  color: white;
  margin-bottom: 30px;
  font-size: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.time-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  gap: 10px;
}

.time-feature i {
  color: #00ffff;
  font-size: 2rem;
}

.time-feature h4 {
  margin-bottom: 5px;
  color: white;
}

.time-feature p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

.time-travel-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.time-travel-stats .stat {
  text-align: center;
  color: white;
}

.time-travel-stats .stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #00ffff;
  margin-bottom: 5px;
}

.time-travel-stats .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Responsive Design for Revolutionary Features */
@media (max-width: 1024px) {
  .ai-content,
  .vr-content,
  .mining-content,
  .trading-content,
  .nft-content,
  .dealers-content,
  .mood-content,
  .time-travel-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .time-travel-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .prediction-results {
    grid-template-columns: 1fr;
  }
  
  .vr-headset {
    width: 250px;
    height: 150px;
  }
  
  .nft-gallery {
    grid-template-columns: 1fr;
  }
  
  .dealer-face {
    width: 150px;
    height: 150px;
  }
  
  .mood-camera {
    width: 150px;
    height: 150px;
  }
  
  .time-dial {
    width: 120px;
    height: 120px;
  }
  
  .time-portal {
    width: 150px;
    height: 150px;
  }
}

.about-us {
  padding: 80px 0;
  background: var(--foam-white);
  margin: 40px 0;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  width: 100%;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.about-card {
  background: var(--foam-gradient);
  padding: 40px 30px;
  border-radius: 30px 30px 15px 15px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid var(--foam-white);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  box-shadow: 
    var(--shadow-medium),
    inset 0 2px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--soda-gradient);
  z-index: 2;
  border-radius: 30px 30px 0 0;
}

.about-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  opacity: 0;
  transition: all 0.5s ease;
  animation: rotate 20s linear infinite;
}

.about-card:hover::after {
  opacity: 1;
}

.about-card:hover {
  transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-color);
}

.about-card:hover .card-icon {
  transform: scale(1.1) rotateY(10deg);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

.card-icon {
  width: 100px;
  height: 100px;
  background: var(--bubble-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 
    var(--bubble-shadow),
    0 0 20px rgba(255, 69, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 3px solid var(--foam-white);
}

.card-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: rotate 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-card:hover .card-icon::before {
  opacity: 1;
}

.card-icon i {
  font-size: 2.2rem;
  color: var(--secondary-color);
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
}

.about-card:hover .card-icon i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.about-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--soda-dark);
  margin-bottom: 15px;
}

.about-card p {
  color: var(--soda-dark);
  line-height: 1.6;
  font-size: 1rem;
  opacity: 0.8;
}

.about-us-banner {
  flex: 1;
  max-width: 50%;
  overflow: hidden;
}

.about-us-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.about-us-intro {
  flex: 1;
  max-width: 50%;
  padding: 30px;
  background-color: var(--secondary-color);
  border-radius: 0 15px 15px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
  border-left: 4px solid var(--primary-color);
}

.about-us-intro h2 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.about-us-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.bonus {
  padding: 80px 0;
  background: var(--foam-white);
  margin: 40px 0;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  width: 100%;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.bonus-card {
  background: var(--third-color);
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid var(--orange-light);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.bonus-card:hover::before {
  opacity: 0.05;
}

.bonus-card.featured {
  border: 3px solid var(--primary-color);
  transform: scale(1.05);
  box-shadow: var(--shadow-strong);
  background: linear-gradient(135deg, var(--third-color) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.bonus-card.featured::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-1);
  border-radius: 25px;
  z-index: -1;
  animation: pulse 2s ease-in-out infinite;
}

.bonus-card:hover {
  transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-color);
}

.bonus-card.featured:hover {
  transform: scale(1.05) translateY(-15px) rotateX(5deg) rotateY(5deg);
}

.bonus-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
  color: var(--secondary-color);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.bonus-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.bonus-icon i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.bonus-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.bonus-amount {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  position: relative;
  animation: gradientShift 3s ease-in-out infinite;
  z-index: 2;
}

.bonus-amount::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s ease-in-out infinite;
}

.bonus-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1rem;
}

.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
}

.bonus-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.bonus-carousel {
  margin-top: 40px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  animation: slide 20s infinite linear;
}

@keyframes slide {
  0% { transform: translateX(0); }
  25% { transform: translateX(-25%); }
  50% { transform: translateX(-50%); }
  75% { transform: translateX(-75%); }
  100% { transform: translateX(0); }
}

.carousel-slide {
  flex: 0 0 25%;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--secondary-color);
  padding: 20px;
  text-align: center;
}

.slide-overlay h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.slide-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.bonus-carousel a {
  flex-shrink: 0;
  width: 100%;
}

.bonus-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.bonus-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.bonus-banner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  max-width: 600px;
  margin-top: 30px;
  height: auto;
}

.bonus-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.bonus-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
  border-top: 4px solid var(--primary-color);
}

.bonus-intro h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.bonus-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.bonus-card {
  flex: 1;
  min-width: 200px;
  background-color: var(--third-color);
  padding: 20px;
  border-radius: 15px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--orange-light);
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
}

.bonus-card h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.bonus-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.bonus-card i {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--accent-primary);
}

.games {
  padding: 80px 0;
  background: var(--foam-white);
  margin: 40px 0;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  width: 100%;
}

.games-intro h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.games-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.game-card {
  background: var(--third-color);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid var(--orange-light);
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.game-card:hover::before {
  opacity: 0.05;
}

.game-card:hover {
  transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-color);
}

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

.game-card:hover .game-overlay {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

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

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

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

.game-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
  color: var(--secondary-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.game-content {
  padding: 30px;
}

.game-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.game-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

.game-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.feature {
  background: var(--orange-light);
  color: var(--text-primary);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.faq {
  padding: 80px 0;
  background: var(--foam-white);
  margin: 40px 0;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  width: 100%;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.faq-item {
  background: var(--third-color);
  border-radius: 15px;
  margin-bottom: 20px;
  border: 2px solid var(--orange-light);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.faq-question {
  padding: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 107, 53, 0.05);
}

.faq-question h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 600;
}

.faq-question i {
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 25px 25px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.footer {
  background: linear-gradient(135deg, var(--text-primary) 0%, #1a1a1a 100%);
  padding: 60px 0 30px;
  margin-top: 60px;
  color: var(--secondary-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 20px;
  position: relative;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
  border-radius: 2px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.footer-section p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy p {
  color: #999;
  font-size: 0.9rem;
  margin: 0;
}

.footer-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.badge {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .nav-menu-toggle {
    display: flex;
  }
  
  .navbar-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--foam-white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-medium);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .navbar-menu li {
    margin: 10px 0;
  }
  
  .nav-link {
    display: block;
    padding: 15px;
  text-align: center;
    border-radius: 10px;
  }
  
  .auth-buttons {
    margin-top: 20px;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
  
  .hero {
    padding: 40px 0;
    margin: 10px 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .stat {
    width: 80px;
    height: 80px;
    padding: 10px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .about-grid,
  .bonus-grid,
  .games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-content {
    padding: 0 20px;
    margin-bottom: 40px;
    margin-top: 40px;
  }
  
  .hero-image {
    margin-top: 20px;
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .stat {
    width: 100px;
    height: 100px;
    padding: 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .about-grid,
  .bonus-grid,
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  }

  .about-us {
    flex-direction: column;
  }

  .about-us-banner,
  .about-us-intro {
    max-width: 100%;
    border-radius: 15px;
  }

  .about-us-intro {
    padding: 20px;
  }

  .bonus {
    flex-direction: column;
  }

  .bonus-banner,
  .bonus-details {
    max-width: 100%;
  }

  .games {
    padding: 20px;
  }

  .faq {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .navbar .auth-buttons {
    margin-top: 10px;
    width: 100%;
    gap: 20px;
    justify-content: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero {
    padding: 30px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .about-us-intro h2 {
    font-size: 1.4rem;
  }

  .games-intro h3,
  .faq h3 {
    font-size: 1.3rem;
  }

  .footer-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px;
  }

  .hero {
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 1.3rem;
  }

  .about-us-intro {
    padding: 15px;
  }

  .bonus-details {
    padding: 20px;
  }

  .games {
    padding: 15px;
  }

  .faq {
    padding: 15px;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}