/* =============================================
   CSS CUSTOM PROPERTIES & RESET
   ============================================= */

:root {
  /* Primary Colors */
  --primary: #00695c;
  --primary-dark: #004d40;
  --primary-light: #009688;
  --primary-glow: #00897b;

  /* Secondary Colors */
  --secondary: #fff8e1;
  --secondary-dark: #ffecb3;
  --secondary-deep: #ffe082;

  /* Accent Colors */
  --accent: #ff6d00;
  --accent-light: #ff9100;
  --accent-dark: #e65100;
  --accent-glow: #ffab40;

  /* Tropical Palette */
  --tropical-pink: #e91e63;
  --tropical-pink-light: #f06292;
  --tropical-green: #00c853;
  --tropical-green-dark: #1b5e20;
  --tropical-blue: #0277bd;
  --tropical-blue-light: #03a9f4;
  --tropical-yellow: #ffd600;
  --tropical-purple: #7c4dff;
  --tropical-coral: #ff5252;
  --tropical-teal: #1de9b6;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #fafaf5;
  --light-gray: #f5f5f0;
  --medium-gray: #9e9e9e;
  --dark-gray: #424242;
  --near-black: #1a1a2e;
  --black: #0d0d1a;

  /* Typography */
  --font-display: "Lilita One", cursive;
  --font-body: "Nunito", sans-serif;
  --font-script: "Pacifico", cursive;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 60px rgba(0, 0, 0, 0.2);
  --shadow-glow-primary: 0 4px 30px rgba(0, 105, 92, 0.4);
  --shadow-glow-accent: 0 4px 30px rgba(255, 109, 0, 0.4);
  --shadow-glow-pink: 0 4px 30px rgba(233, 30, 99, 0.3);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--near-black);
  background-color: var(--secondary);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

address {
  font-style: normal;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* =============================================
   ANIMATIONS & KEYFRAMES
   ============================================= */

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
  }
  50% {
    transform: translateY(-5px) rotate(-1deg);
  }
  75% {
    transform: translateY(-20px) rotate(1deg);
  }
}

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

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

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 105, 92, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(0, 105, 92, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

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

@keyframes rotateLeaf {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(5deg) scale(1.02);
  }
  50% {
    transform: rotate(0deg) scale(1);
  }
  75% {
    transform: rotate(-5deg) scale(0.98);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

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

@keyframes timerFill {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

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

@keyframes slideInOverlay {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes particleFloat1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translate(30px, -50px) rotate(90deg);
    opacity: 0.8;
  }
  50% {
    transform: translate(-20px, -100px) rotate(180deg);
    opacity: 0.4;
  }
  75% {
    transform: translate(40px, -60px) rotate(270deg);
    opacity: 0.7;
  }
}

@keyframes particleFloat2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(45deg);
    opacity: 0.5;
  }
  33% {
    transform: translate(-40px, -80px) rotate(165deg);
    opacity: 0.7;
  }
  66% {
    transform: translate(20px, -40px) rotate(285deg);
    opacity: 0.3;
  }
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   AGE VERIFICATION MODAL
   ============================================= */

.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInOverlay 0.4s ease;
}

.age-modal-content {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 50%,
    var(--primary-light) 100%
  );
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  max-width: 500px;
  width: 90%;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  animation: bounceIn 0.6s ease;
  box-shadow:
    var(--shadow-xl),
    0 0 80px rgba(0, 105, 92, 0.3);
}

.age-modal-decoration .leaf-pattern {
  position: absolute;
  border-radius: var(--radius-full);
  opacity: 0.1;
}

.leaf-pattern.leaf-1 {
  width: 200px;
  height: 200px;
  background: var(--tropical-teal);
  top: -60px;
  right: -60px;
  animation: rotateLeaf 8s ease-in-out infinite;
}

.leaf-pattern.leaf-2 {
  width: 120px;
  height: 120px;
  background: var(--accent);
  bottom: -40px;
  left: -40px;
  animation: rotateLeaf 10s ease-in-out infinite reverse;
}

.leaf-pattern.leaf-3 {
  width: 80px;
  height: 80px;
  background: var(--tropical-yellow);
  top: 50%;
  left: -20px;
  animation: rotateLeaf 6s ease-in-out infinite;
}

.age-modal-inner {
  position: relative;
  z-index: 1;
}

.age-shield-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
  color: var(--tropical-yellow);
  filter: drop-shadow(0 4px 10px rgba(255, 214, 0, 0.3));
}

.age-modal-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.age-modal-content p {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  opacity: 0.9;
}

.age-small-text {
  font-size: 0.9rem !important;
  opacity: 0.7 !important;
  margin-bottom: var(--space-xl) !important;
}

.age-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.age-btn {
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.1rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 3px solid transparent;
}

.age-yes {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow-accent);
}

.age-yes:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 40px rgba(255, 109, 0, 0.5);
}

.age-no {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.age-no:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Underage Block */
.underage-block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--near-black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.underage-content {
  text-align: center;
  color: var(--white);
  padding: var(--space-2xl);
}

.underage-icon {
  font-size: 5rem;
  color: var(--tropical-coral);
  margin-bottom: var(--space-xl);
}

.underage-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.underage-content p {
  font-size: 1.2rem;
  opacity: 0.7;
  margin-bottom: var(--space-sm);
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--near-black), #1a2a3a);
  color: var(--white);
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  border-top: 3px solid var(--primary);
  animation: fadeInUp 0.5s ease;
}

.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  flex: 1;
  min-width: 280px;
}

.cookie-icon {
  font-size: 2rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-text strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.cookie-text p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--tropical-teal);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.cookie-accept {
  background: var(--primary);
  color: var(--white);
}

.cookie-accept:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  border-color: var(--white);
}

.cookie-settings-btn {
  background: transparent;
  color: var(--tropical-teal);
  border-color: var(--tropical-teal);
}

.cookie-settings:hover {
  background: rgba(29, 233, 182, 0.1);
}

.cookie-settings-panel {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl) var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
}

.cookie-setting-item {
  margin-bottom: var(--space-sm);
}

.cookie-setting-item label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  font-size: 0.95rem;
}

.cookie-setting-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-normal);
  background: rgba(0, 77, 64, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.main-header.scrolled {
  background: rgba(0, 77, 64, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-bg-leaves {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(0, 200, 83, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 50%,
      rgba(255, 109, 0, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.main-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--white);
  z-index: 1001;
}

.logo i {
  font-size: 1.5rem;
  color: var(--accent);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 1px;
}

.logo-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  border-radius: var(--radius-pill);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

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

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: var(--space-sm) var(--space-lg) !important;
  border-radius: var(--radius-pill);
  font-weight: 800;
  box-shadow: var(--shadow-glow-accent);
  transition: all var(--transition-normal);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 109, 0, 0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: var(--space-sm);
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: var(--radius-pill);
  transition: all var(--transition-normal);
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tropical-layer {
  position: absolute;
  border-radius: 50%;
}

.tropical-layer-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 105, 92, 0.9) 0%,
    rgba(0, 77, 64, 0.95) 40%,
    rgba(27, 94, 32, 0.8) 70%,
    transparent 100%
  );
  top: -200px;
  left: -200px;
  animation: rotateLeaf 20s ease-in-out infinite;
}

.tropical-layer-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 109, 0, 0.15) 0%,
    rgba(255, 145, 0, 0.08) 50%,
    transparent 100%
  );
  bottom: -100px;
  right: -100px;
  animation: rotateLeaf 15s ease-in-out infinite reverse;
}

.tropical-layer-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 99, 0.1) 0%,
    transparent 70%
  );
  top: 30%;
  right: 20%;
  animation: float 12s ease-in-out infinite;
}

.hero-particle {
  position: absolute;
  border-radius: var(--radius-full);
  pointer-events: none;
}

.particle-1 {
  width: 12px;
  height: 12px;
  background: var(--accent);
  top: 20%;
  left: 15%;
  animation: particleFloat1 8s ease-in-out infinite;
  opacity: 0.6;
}

.particle-2 {
  width: 8px;
  height: 8px;
  background: var(--tropical-pink);
  top: 40%;
  left: 60%;
  animation: particleFloat2 10s ease-in-out infinite;
  opacity: 0.5;
}

.particle-3 {
  width: 16px;
  height: 16px;
  background: var(--tropical-yellow);
  top: 70%;
  left: 25%;
  animation: particleFloat1 12s ease-in-out infinite reverse;
  opacity: 0.4;
}

.particle-4 {
  width: 6px;
  height: 6px;
  background: var(--tropical-teal);
  top: 15%;
  right: 30%;
  animation: particleFloat2 7s ease-in-out infinite;
  opacity: 0.7;
}

.particle-5 {
  width: 10px;
  height: 10px;
  background: var(--tropical-green);
  bottom: 30%;
  left: 45%;
  animation: particleFloat1 9s ease-in-out infinite;
  opacity: 0.5;
}

.particle-6 {
  width: 14px;
  height: 14px;
  background: var(--tropical-blue-light);
  top: 55%;
  right: 15%;
  animation: particleFloat2 11s ease-in-out infinite reverse;
  opacity: 0.4;
}

.particle-7 {
  width: 8px;
  height: 8px;
  background: var(--accent-glow);
  bottom: 20%;
  right: 40%;
  animation: particleFloat1 6s ease-in-out infinite;
  opacity: 0.6;
}

.particle-8 {
  width: 20px;
  height: 20px;
  background: rgba(255, 214, 0, 0.3);
  top: 10%;
  left: 70%;
  animation: float 14s ease-in-out infinite;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: var(--space-4xl) 0 var(--space-4xl) var(--space-xl);
  margin-left: 5%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 109, 0, 0.2);
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: var(--space-xl);
  animation: fadeInDown 0.6s ease 0.2s both;
}

.hero-badge i {
  color: var(--tropical-coral);
}

.hero-title {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-xl);
}

.hero-title-line-1 {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  opacity: 0.9;
  animation: fadeInLeft 0.6s ease 0.3s both;
}

.hero-title-line-2 {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--tropical-yellow);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
  animation: fadeInLeft 0.6s ease 0.5s both;
}

.hero-title-line-3 {
  display: block;
  font-size: clamp(2rem, 5vw, 3.2rem);
  animation: fadeInLeft 0.6s ease 0.7s both;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  max-width: 480px;
  animation: fadeInUp 0.6s ease 0.8s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
  animation: fadeInUp 0.6s ease 1s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 1.05rem;
  transition: all var(--transition-normal);
  border: 3px solid transparent;
}

.hero-btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow-accent);
}

.hero-btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(255, 109, 0, 0.5);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  animation: fadeInUp 0.6s ease 1.2s both;
}

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

.hero-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--tropical-yellow);
}

.hero-stat-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-stat-divider {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
}

/* Phone Mockup */
.hero-phone-mockup {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  animation: fadeInRight 0.8s ease 0.6s both;
}

.phone-frame {
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  animation: floatSlow 4s ease-in-out infinite;
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: #0d0d1a;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: linear-gradient(
    180deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  border-radius: 30px;
  height: calc(100% - 12px);
  overflow: hidden;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  margin-top: -14px;
  padding-top: 40px;
}

.phone-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
  padding: 0 var(--space-sm);
}

.phone-app-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.2rem;
}

.phone-menu-icon {
  color: rgba(255, 255, 255, 0.6);
}

.phone-question-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-category-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 2px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.phone-question-text {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: var(--space-md);
}

.phone-timer-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.phone-timer-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(
    90deg,
    var(--tropical-teal),
    var(--tropical-green)
  );
  border-radius: var(--radius-pill);
  animation: timerFill 15s linear infinite;
}

.phone-answers {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex: 1;
}

.phone-answer {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all var(--transition-normal);
}

.phone-answer-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.phone-answer-correct {
  background: rgba(0, 200, 83, 0.2);
  border-color: var(--tropical-green);
}

.phone-answer-correct .phone-answer-letter {
  background: var(--tropical-green);
}

.phone-score-bar {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm);
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
}

.phone-score-item {
  color: var(--tropical-yellow);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* =============================================
   SOCIAL PROOF TICKER
   ============================================= */

.social-proof-ticker {
  background: linear-gradient(
    90deg,
    var(--primary-dark),
    var(--primary),
    var(--primary-dark)
  );
  padding: var(--space-md) 0;
  overflow: hidden;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.ticker-track {
  overflow: hidden;
}

.ticker-content {
  display: flex;
  gap: var(--space-3xl);
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

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

/* =============================================
   SECTION HEADERS
   ============================================= */

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--near-black);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.text-accent {
  color: var(--accent);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--dark-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =============================================
   FEATURES SECTION
   ============================================= */

.features-section {
  position: relative;
  padding: var(--space-4xl) 0;
  background: linear-gradient(
    180deg,
    var(--secondary) 0%,
    var(--off-white) 50%,
    var(--secondary) 100%
  );
  overflow: hidden;
}

.section-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(0, 105, 92, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 109, 0, 0.04) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(233, 30, 99, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  position: relative;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-card-1 {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-color: rgba(0, 200, 83, 0.2);
}

.feature-card-2 {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border-color: rgba(255, 109, 0, 0.2);
}

.feature-card-3 {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-color: rgba(2, 119, 189, 0.2);
}

.feature-card-4 {
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  border-color: rgba(233, 30, 99, 0.2);
}

.feature-card-5 {
  background: linear-gradient(135deg, #fff8e1, #ffecb3);
  border-color: rgba(255, 214, 0, 0.3);
}

.feature-card-6 {
  background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
  border-color: rgba(0, 105, 92, 0.2);
}

.feature-decoration {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  bottom: -30px;
  right: -30px;
  opacity: 0.1;
}

.feature-card-1 .feature-decoration {
  background: var(--tropical-green);
}
.feature-card-2 .feature-decoration {
  background: var(--accent);
}
.feature-card-3 .feature-decoration {
  background: var(--tropical-blue);
}
.feature-card-4 .feature-decoration {
  background: var(--tropical-pink);
}
.feature-card-5 .feature-decoration {
  background: var(--tropical-yellow);
}
.feature-card-6 .feature-decoration {
  background: var(--primary);
}

.feature-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.8rem;
  color: var(--white);
  position: relative;
}

.feature-card-1 .feature-icon-wrap {
  background: linear-gradient(
    135deg,
    var(--tropical-green-dark),
    var(--tropical-green)
  );
}
.feature-card-2 .feature-icon-wrap {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}
.feature-card-3 .feature-icon-wrap {
  background: linear-gradient(
    135deg,
    var(--tropical-blue),
    var(--tropical-blue-light)
  );
}
.feature-card-4 .feature-icon-wrap {
  background: linear-gradient(
    135deg,
    var(--tropical-pink),
    var(--tropical-pink-light)
  );
}
.feature-card-5 .feature-icon-wrap {
  background: linear-gradient(135deg, #f57f17, var(--tropical-yellow));
}
.feature-card-6 .feature-icon-wrap {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-light)
  );
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  color: var(--near-black);
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* =============================================
   HOW IT WORKS SECTION
   ============================================= */

.how-it-works {
  position: relative;
  padding: var(--space-4xl) 0;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 50%,
    #00796b 100%
  );
  color: var(--white);
  overflow: hidden;
}

.hiw-bg-decoration {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 109, 0, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(29, 233, 182, 0.08) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.how-it-works .section-title {
  color: var(--white);
}

.how-it-works .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.how-it-works .section-tag {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.step-card {
  text-align: center;
  padding: var(--space-2xl);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  transition: all var(--transition-normal);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 2rem;
  color: var(--white);
  box-shadow: var(--shadow-glow-accent);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.step-desc {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
}

.step-connector {
  display: none;
}

/* =============================================
   CATEGORIES SECTION
   ============================================= */

.categories-section {
  padding: var(--space-4xl) 0;
  background: var(--secondary);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.category-card {
  position: relative;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-xl);
  text-align: center;
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.category-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background:
    repeating-linear-gradient(
      45deg,
      currentColor 0px,
      currentColor 1px,
      transparent 1px,
      transparent 10px
    ),
    repeating-linear-gradient(
      -45deg,
      currentColor 0px,
      currentColor 1px,
      transparent 1px,
      transparent 10px
    );
}

.cat-history {
  background: linear-gradient(135deg, #4a148c, #7b1fa2);
  color: var(--white);
}

.cat-science {
  background: linear-gradient(135deg, #1a237e, #283593);
  color: var(--white);
}

.cat-sports {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  color: var(--white);
}

.cat-music {
  background: linear-gradient(135deg, #b71c1c, #c62828);
  color: var(--white);
}

.cat-cinema {
  background: linear-gradient(135deg, #e65100, #ef6c00);
  color: var(--white);
}

.cat-geography {
  background: linear-gradient(135deg, #01579b, #0277bd);
  color: var(--white);
}

.cat-tech {
  background: linear-gradient(135deg, #263238, #37474f);
  color: var(--white);
}

.cat-food {
  background: linear-gradient(135deg, #bf360c, #d84315);
  color: var(--white);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  position: relative;
}

.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  position: relative;
}

.category-count {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: var(--space-md);
  position: relative;
}

.category-difficulty {
  display: flex;
  gap: 4px;
  justify-content: center;
  position: relative;
}

.diff-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
}

.diff-dot.active {
  background: var(--tropical-yellow);
}

/* =============================================
   LIVE COUNTER SECTION
   ============================================= */

.live-counter-section {
  position: relative;
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  overflow: hidden;
}

.live-counter-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(0, 105, 92, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(255, 109, 0, 0.1) 0%,
      transparent 50%
    );
}

.live-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.live-counter-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: all var(--transition-normal);
}

.live-counter-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.counter-pulse {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 10px;
  height: 10px;
  background: var(--tropical-green);
  border-radius: var(--radius-full);
  animation: pulseGlow 2s ease-in-out infinite;
}

.counter-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.counter-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.counter-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 600;
}

.counter-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--tropical-green);
  border-radius: var(--radius-full);
  margin-top: var(--space-sm);
  animation: liveDot 1.5s ease-in-out infinite;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */

.testimonials-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, var(--secondary), var(--off-white));
  overflow: hidden;
}

.testimonials-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  gap: var(--space-xl);
  transition: transform 0.5s ease;
  cursor: grab;
}

.testimonials-track:active {
  cursor: grabbing;
}

.testimonial-card {
  min-width: calc(33.333% - var(--space-xl) * 2 / 3);
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 2px solid rgba(0, 105, 92, 0.1);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-md);
  color: var(--tropical-yellow);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark-gray);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--near-black);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--medium-gray);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  font-size: 1rem;
}

.testimonial-btn:hover {
  background: var(--primary-light);
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: var(--space-sm);
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(0, 105, 92, 0.2);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.testimonial-dot.active {
  background: var(--primary);
  width: 32px;
  border-radius: var(--radius-pill);
}

/* =============================================
   FAQ SECTION
   ============================================= */

.faq-section {
  position: relative;
  padding: var(--space-4xl) 0;
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary),
    #00796b
  );
  color: var(--white);
  overflow: hidden;
}

.faq-bg-decoration {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 0% 100%,
      rgba(255, 109, 0, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(29, 233, 182, 0.08) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.faq-section .section-title {
  color: var(--white);
}

.faq-section .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.faq-section .section-tag {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.faq-item {
  margin-bottom: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: left;
  transition: all var(--transition-normal);
  gap: var(--space-md);
}

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

.faq-icon {
  font-size: 1rem;
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  color: var(--accent);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
}

.faq-answer a {
  color: var(--tropical-teal);
  text-decoration: underline;
}

/* =============================================
   REGISTRATION SECTION
   ============================================= */

.registration-section {
  position: relative;
  padding: var(--space-4xl) 0;
  background: var(--secondary);
  overflow: hidden;
}

.registration-bg .reg-tropical-1,
.registration-bg .reg-tropical-2,
.registration-bg .reg-tropical-3 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.reg-tropical-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 105, 92, 0.06) 0%,
    transparent 70%
  );
  top: -100px;
  left: -100px;
}

.reg-tropical-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 109, 0, 0.05) 0%,
    transparent 70%
  );
  bottom: -100px;
  right: -100px;
}

.reg-tropical-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 99, 0.04) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.registration-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
  position: relative;
}

.registration-info {
  padding-top: var(--space-xl);
}

.reg-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--near-black);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.reg-subtitle {
  font-size: 1.1rem;
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
}

.reg-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.reg-benefit {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-weight: 600;
  font-size: 1rem;
  color: var(--near-black);
}

.reg-benefit i {
  color: var(--tropical-green);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.reg-trust {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  padding: var(--space-md) var(--space-lg);
  background: rgba(0, 105, 92, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 105, 92, 0.15);
}

.registration-form-wrap {
  position: relative;
}

.registration-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(0, 105, 92, 0.1);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--near-black);
  margin-bottom: var(--space-sm);
}

.form-group label i {
  color: var(--primary);
  margin-right: var(--space-xs);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all var(--transition-normal);
  background: var(--off-white);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 105, 92, 0.1);
  background: var(--white);
}

.form-group input.error {
  border-color: var(--tropical-coral);
  box-shadow: 0 0 0 4px rgba(255, 82, 82, 0.1);
}

.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
  font-weight: 400 !important;
  font-size: 0.9rem !important;
  color: var(--dark-gray) !important;
  line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-checkbox a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.form-error {
  display: block;
  color: var(--tropical-coral);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: var(--space-xs);
  min-height: 1.2em;
}

.form-submit {
  width: 100%;
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-glow-accent);
  margin-top: var(--space-md);
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255, 109, 0, 0.4);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
  border: 2px solid var(--tropical-green);
}

.form-success i {
  font-size: 3rem;
  color: var(--tropical-green);
  margin-bottom: var(--space-md);
  display: block;
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--tropical-green-dark);
  margin-bottom: var(--space-sm);
}

.form-success p {
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.form-error-message {
  text-align: center;
  padding: var(--space-lg);
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
  border: 2px solid var(--tropical-coral);
}

.form-error-message i {
  font-size: 2rem;
  color: var(--tropical-coral);
  margin-bottom: var(--space-sm);
  display: block;
}

.form-error-message a {
  color: var(--tropical-coral);
  font-weight: 700;
}

/* =============================================
   TRUST SECTION
   ============================================= */

.trust-section {
  padding: var(--space-4xl) 0;
  background: var(--off-white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.trust-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(0, 105, 92, 0.1);
  transition: all var(--transition-normal);
}

.trust-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.trust-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.8rem;
  color: var(--white);
}

.trust-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  color: var(--near-black);
}

.trust-card p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

.trust-card a {
  color: var(--primary);
  font-weight: 700;
}

/* =============================================
   FOOTER
   ============================================= */

.main-footer {
  position: relative;
  background: var(--near-black);
  color: var(--white);
}

.footer-top-wave {
  position: relative;
  margin-top: -2px;
  color: var(--near-black);
  line-height: 0;
}

.footer-top-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

.footer-content {
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  display: inline-block;
  margin-bottom: var(--space-md);
}

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-normal);
  font-size: 1rem;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-links-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  color: var(--accent);
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-links-col a:hover {
  color: var(--white);
}

.footer-address {
  margin-top: var(--space-lg);
  display: flex;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-address i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom-left p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-age-notice {
  margin-top: var(--space-xs);
  color: var(--tropical-coral) !important;
  font-weight: 700;
}

.footer-bottom-right {
  display: flex;
  gap: var(--space-sm);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(255, 255, 255, 0.08);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-badge i {
  color: var(--tropical-teal);
}

/* =============================================
   LEGAL PAGES
   ============================================= */

.legal-hero {
  position: relative;
  padding: 140px 0 60px;
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary),
    #00796b
  );
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.legal-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 109, 0, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(29, 233, 182, 0.06) 0%,
      transparent 50%
    );
}

.legal-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
  position: relative;
}

.legal-hero-title i {
  margin-right: var(--space-sm);
  color: var(--accent);
}

.legal-hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  position: relative;
}

.legal-content-section {
  padding: var(--space-3xl) 0 var(--space-4xl);
  background: var(--secondary);
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(0, 105, 92, 0.08);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid rgba(0, 105, 92, 0.1);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--near-black);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: var(--space-md);
}

.legal-content ul,
.legal-content ol {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: var(--space-xs);
}

.legal-content a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--accent);
}

.legal-footer-info {
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 2px solid rgba(0, 105, 92, 0.1);
  text-align: center;
}

.legal-footer-info p {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

/* GDPR specific */
.gdpr-info-box {
  background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  border: 2px solid rgba(0, 105, 92, 0.15);
}

.gdpr-info-box p {
  margin-bottom: var(--space-xs);
  color: var(--near-black);
}

.gdpr-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.gdpr-right-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 2px solid rgba(0, 105, 92, 0.08);
  transition: all var(--transition-normal);
}

.gdpr-right-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.gdpr-right-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
}

.gdpr-right-card h3 {
  margin-top: 0 !important;
}

.gdpr-right-card ul {
  padding-left: var(--space-lg);
}

.gdpr-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gdpr-table th,
.gdpr-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid #e0e0e0;
}

.gdpr-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}

.gdpr-table td {
  color: var(--dark-gray);
}

.gdpr-table tr:nth-child(even) td {
  background: var(--off-white);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 1200px) {
  .hero-phone-mockup {
    right: 4%;
  }

  .phone-frame {
    width: 260px;
    height: 520px;
  }
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }

  .hero-content {
    margin-left: 0;
    padding: var(--space-3xl) var(--space-xl);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-phone-mockup {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 0 auto var(--space-2xl);
  }

  .phone-frame {
    width: 240px;
    height: 480px;
  }

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

  .steps-container {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

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

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

  .registration-wrapper {
    grid-template-columns: 1fr;
  }

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

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

  .gdpr-rights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    background: rgba(0, 77, 64, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
    z-index: 1000;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    font-size: 1.3rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero-stat-divider {
    width: 40px;
    height: 2px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

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

  .live-counters {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-width: calc(100% - 0px);
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-content {
    padding: var(--space-xl);
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: center;
  }

  .age-modal-content {
    padding: var(--space-2xl);
  }

  .age-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    width: 220px;
    height: 440px;
  }

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

  .hero-title-line-2 {
    font-size: 2.2rem;
  }

  .gdpr-rights-grid {
    grid-template-columns: 1fr;
  }

  .gdpr-table {
    font-size: 0.85rem;
  }

  .gdpr-table th,
  .gdpr-table td {
    padding: var(--space-sm) var(--space-md);
  }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .ticker-content {
    animation: none;
  }
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* =============================================
   SCROLLBAR STYLING
   ============================================= */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* =============================================
   SELECTION
   ============================================= */

::selection {
  background: var(--primary);
  color: var(--white);
}
