/* ============================================
   STYLE.CSS — aerozintaro.site
   Treasure Adventure Lux Design System
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Base Layers */
  --bg-primary: #081c15;
  --bg-secondary: #0f2a21;
  --bg-elevated: rgba(255, 255, 255, 0.04);
  --bg-elevated-hover: rgba(255, 255, 255, 0.07);

  /* Accents */
  --accent-primary: #22c55e;
  --accent-secondary: #4ade80;
  --accent-highlight: #facc15;

  /* Text */
  --text-primary: #ecfdf5;
  --text-secondary: #bbf7d0;
  --text-muted: #6ee7b7;

  /* Glass */
  --glass-bg: rgba(15, 42, 33, 0.6);
  --glass-border: rgba(34, 197, 94, 0.15);
  --glass-blur: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(34, 197, 94, 0.15);

  /* Layout */
  --container-max: 1320px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--accent-highlight);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

/* --- Utility --- */
.text-gold {
  color: var(--accent-highlight);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 28, 21, 0.8);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.header.scrolled {
  background: rgba(8, 28, 21, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(250, 204, 21, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  flex-shrink: 0;
}

.logo-icon {
  font-size: 28px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

/* Desktop Nav */
.nav-desktop {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  position: relative;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-highlight));
  border-radius: 2px;
  transition: width var(--transition-normal);
}

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

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

/* Header CTA */
.header-cta {
  font-size: 14px;
  padding: 10px 24px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: var(--bg-secondary);
  padding: 24px;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-overlay.active .mobile-panel {
  transform: translateX(0);
}

.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mobile-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 28px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.mobile-close:hover {
  background: var(--bg-elevated-hover);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.mobile-cta {
  margin-top: auto;
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  text-decoration: none;
  line-height: 1.4;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), #16a34a);
  color: #fff;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 25px rgba(34, 197, 94, 0.45);
  filter: brightness(1.1);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent-secondary);
  border: 2px solid rgba(74, 222, 128, 0.4);
}

.btn-outline:hover {
  background: rgba(74, 222, 128, 0.1);
  border-color: var(--accent-secondary);
  color: var(--accent-secondary);
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.15);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  font-size: 18px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(250, 204, 21, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(34, 197, 94, 0.04) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-secondary);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.7;
  max-width: 480px;
  line-height: 1.6;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-box-scene {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.treasure-box {
  position: relative;
  z-index: 2;
}

.box-body {
  width: 160px;
  height: 120px;
  background: linear-gradient(145deg, #b8860b, #daa520, #b8860b);
  border-radius: 12px;
  position: relative;
  box-shadow: 
    0 10px 40px rgba(218, 165, 32, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.box-body::before {
  content: '🔐';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
}

.box-lid {
  width: 180px;
  height: 40px;
  background: linear-gradient(145deg, #daa520, #f0c040, #daa520);
  border-radius: 12px 12px 4px 4px;
  margin: 0 auto 4px;
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
  animation: lidBounce 3s ease-in-out infinite;
}

.box-glow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes lidBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(-2deg); }
  75% { transform: translateY(-4px) rotate(1deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

.floating-gems {
  position: absolute;
  inset: 0;
}

.gem {
  position: absolute;
  font-size: 28px;
  animation: floatGem 6s ease-in-out infinite;
}

.gem-1 { top: 10%; left: 15%; animation-delay: 0s; }
.gem-2 { top: 5%; right: 20%; animation-delay: 1.2s; }
.gem-3 { bottom: 25%; left: 5%; animation-delay: 0.6s; }
.gem-4 { bottom: 15%; right: 10%; animation-delay: 1.8s; }
.gem-5 { top: 40%; right: 5%; animation-delay: 2.4s; }

@keyframes floatGem {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
  50% { transform: translateY(-20px) rotate(15deg); opacity: 1; }
}

/* --- Page Hero --- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(34, 197, 94, 0.06) 0%, transparent 60%);
}

.page-hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.page-hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Section Styles --- */
.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-secondary);
  margin-bottom: 16px;
}

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

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Game Section --- */
.game-section {
  padding: 100px 0 120px;
  position: relative;
}

.game-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.game-frame-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.game-glow {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(250, 204, 21, 0.1), rgba(34, 197, 94, 0.2));
  z-index: -1;
  animation: ambientGlow 6s ease-in-out infinite;
}

@keyframes ambientGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.game-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
  display: block;
}

.game-frame-container:hover {
  transform: scale(1.005);
  transition: transform var(--transition-slow);
}

/* --- Features Section --- */
.features-section {
  padding: 100px 0 120px;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(34, 197, 94, 0.04) 0%, transparent 50%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  background: var(--bg-elevated-hover);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Story Section --- */
.story-section {
  padding: 100px 0 120px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.story-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image-wrapper {
  position: relative;
}

.story-decoration {
  position: absolute;
  inset: -20px;
  border: 2px solid rgba(34, 197, 94, 0.1);
  border-radius: var(--radius-xl);
  transform: rotate(3deg);
}

.story-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  min-width: 280px;
}

.story-emoji {
  font-size: 80px;
  display: block;
  margin-bottom: 20px;
}

.story-card h4 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--accent-highlight);
}

.story-card p {
  font-size: 15px;
  color: var(--text-muted);
}

/* --- How To Section --- */
.how-to-section {
  padding: 100px 0 120px;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(250, 204, 21, 0.03) 0%, transparent 50%);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  max-width: 300px;
  flex: 1;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-primary);
  opacity: 0.3;
  margin-bottom: 16px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 50px;
  width: 60px;
  flex-shrink: 0;
  position: relative;
}

.connector-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--glass-border), var(--accent-primary), var(--glass-border));
  display: block;
}

.connector-dot {
  position: absolute;
  left: 50%;
  top: 46px;
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  transform: translateX(-50%);
}

/* --- CTA Section --- */
.cta-section {
  padding: 80px 0 120px;
}

.cta-card {
  background: 
    linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(250, 204, 21, 0.05) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
}

.cta-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.6;
}

/* --- Content Section --- */
.content-section {
  padding: 40px 0 100px;
}

.content-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin-bottom: 28px;
}

.content-card h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent-secondary);
}

.content-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.content-card ul {
  margin: 16px 0;
  padding-left: 24px;
}

.content-card ul li {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
  position: relative;
  list-style: none;
}

.content-card ul li::before {
  content: '→';
  color: var(--accent-primary);
  margin-right: 10px;
  font-weight: 600;
}

.content-card a {
  color: var(--accent-highlight);
  font-weight: 500;
}

.content-card a:hover {
  text-decoration: underline;
}

.legal-content .content-card {
  margin-bottom: 20px;
}

/* Highlight Card */
.highlight-card {
  border-color: rgba(250, 204, 21, 0.2);
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.05), var(--glass-bg));
  text-align: center;
}

.highlight-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.highlight-card h2 {
  color: var(--accent-highlight);
}

/* Tips Grid */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.tip-item {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--glass-border);
}

.tip-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}

.tip-item h4 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.tip-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-method-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.contact-method h4 {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-method p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input {
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}

.form-input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236ee7b7' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 24px;
  color: var(--accent-secondary);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
}

/* --- Footer --- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-tagline {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-list a:hover {
  color: var(--accent-secondary);
}

.footer-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 24px 0;
  margin-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-item {
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 16px;
  background: var(--bg-elevated);
  border-radius: 100px;
  border: 1px solid var(--glass-border);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
}

.footer-copyright {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.footer-legal {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.6;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Particles --- */
.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-primary);
  border-radius: 50%;
  opacity: 0.15;
  animation: floatParticle 20s linear infinite;
}

.particle-1 { left: 10%; top: 20%; animation-duration: 22s; animation-delay: 0s; width: 3px; height: 3px; }
.particle-2 { left: 25%; top: 60%; animation-duration: 18s; animation-delay: 3s; width: 5px; height: 5px; }
.particle-3 { left: 45%; top: 10%; animation-duration: 25s; animation-delay: 1s; }
.particle-4 { left: 60%; top: 75%; animation-duration: 20s; animation-delay: 5s; width: 3px; height: 3px; }
.particle-5 { left: 80%; top: 35%; animation-duration: 23s; animation-delay: 2s; }
.particle-6 { left: 15%; top: 85%; animation-duration: 19s; animation-delay: 4s; width: 5px; height: 5px; }
.particle-7 { left: 70%; top: 15%; animation-duration: 21s; animation-delay: 6s; width: 3px; height: 3px; }
.particle-8 { left: 90%; top: 55%; animation-duration: 24s; animation-delay: 1.5s; }

@keyframes floatParticle {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}
/* ENDFILE */