:root {
  --primary: #F5B731;
  --primary-hover: #DE9F1D;
  --secondary: #F39C12;
  --bg-color: #FDFBF7;
  --text-dark: #2D3748;
  --text-light: #718096;
  --card-bg: rgba(255, 255, 255, 0.95);
  --border: rgba(245, 183, 49, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

button, input, select, textarea {
  font-family: 'Inter', sans-serif;
}

.hidden { display: none !important; }
.mt-4 { margin-top: 1.5rem; }

/* Background blobs */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.6;
}
.blob-1 {
  width: 400px; height: 400px;
  background: var(--primary);
  top: -100px; left: -100px;
}
.blob-2 {
  width: 500px; height: 500px;
  background: var(--secondary);
  bottom: -150px; right: -150px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(29, 21, 34, 0.8) 0%, rgba(61, 28, 40, 0.9) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  color: #fff;
}
.pill {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.text-gradient {
  background: linear-gradient(to right, #F5D061, #F5B731);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.cd-item {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 80px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cd-item span {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

/* Main Container */
.main-container {
  max-width: 1000px;
  margin: -40px auto 40px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Cards & Forms */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 0 auto;
}
.form-group { margin-bottom: 24px; text-align: left; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}
input[type="text"], input[type="email"], input[type="number"], textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  font-size: 1rem;
  background: #fff;
  transition: all 0.3s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 183, 49, 0.15);
}

/* Checkbox group overrides */
.checkbox-group {
  margin-bottom: 24px;
}
.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-weight: 400 !important;
  margin-bottom: 0 !important;
}
.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex-shrink: 0;
  cursor: pointer;
}
.checkbox-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-dark);
}

.disclaimer-text {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.5;
}

/* Custom File Upload */
.file-upload-wrapper {
  position: relative;
  width: 100%;
  height: 120px;
}
.file-upload-wrapper input[type="file"] {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer; z-index: 2;
}
.file-upload-ui {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border: 2px dashed #CBD5E0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  background: #FAFAFA;
  transition: all 0.3s ease;
  z-index: 1;
}
.file-upload-wrapper:hover .file-upload-ui {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(245, 183, 49, 0.05);
}

select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  width: 100%; max-width: 300px; margin: 0 auto 24px; display: block;
  padding: 12px 16px; padding-right: 40px;
  font-size: 1rem;
  border: 1px solid #E2E8F0; border-radius: 12px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5568' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

/* Buttons */
.btn-primary, .btn-secondary {
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(245, 183, 49, 0.25);
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(245, 183, 49, 0.35);
}
.btn-primary:disabled, .btn-secondary:disabled {
  opacity: 0.7; cursor: not-allowed; transform: none;
}
.btn-secondary {
  background: #EDF2F7;
  color: var(--text-dark);
}
.btn-secondary:hover:not(:disabled) { background: #E2E8F0; }
.btn-block { width: 100%; }

/* Status Messages & Error */
.status-msg, .error-msg {
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
}
.error-msg {
  background: #FFF5F5;
  color: #C53030;
  border: 1px solid #FEB2B2;
}
.status-msg h2 { margin-bottom: 12px; }
.success-icon {
  width: 64px; height: 64px;
  background: #C6F6D5;
  color: #2F855A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg { width: 32px; height: 32px; }

/* Share Panel */
.share-panel {
  background: rgba(245, 183, 49, 0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}
.share-panel h3 { margin-bottom: 8px; font-size: 1.25rem; }
.share-input-group {
  display: flex; gap: 8px; margin: 16px 0;
}
.share-input-group input { margin: 0; flex: 1; }
.social-shares { display: flex; gap: 12px; justify-content: center; }
.btn-social {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  flex: 1;
}
.btn-social.fb { background: #1877F2; }
.btn-social.tw { background: #000000; }

#wbx-powered-by-slot {
  margin: auto auto 20px auto;
  width: 100%;
  max-width: 1000px;
}

@media (max-width: 767px) {
  .hero { padding: 60px 16px; min-height: 40vh; }
  .hero h1 { font-size: 2.5rem; }
  .card { padding: 24px; }
  .share-input-group { flex-direction: column; }
  .social-shares { flex-direction: column; }
}