:root {
  /* Brand Colors */
  --navy: #0b1f45;
  --orange: #f2751a;
  --blue: #29abe2;
  --yellow: #ffc93d;
  
  /* UI Colors */
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.75);
  --glass-bg: rgba(11, 31, 69, 0.6);
  --glass-border: rgba(255, 255, 255, 0.12);
  --input-bg: rgba(255, 255, 255, 0.08);
  --error: #ff4d4f;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  --grad-hover: linear-gradient(135deg, #f5893a 0%, #ffd45e 100%);
}

html {
  overflow-y: scroll;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

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

::-webkit-scrollbar-thumb {
  background-color: var(--glass-border);
  border-radius: 10px;
  border: 3px solid var(--navy);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--blue);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--navy);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(to bottom, rgba(11, 31, 69, 0.8), rgba(11, 31, 69, 0.95)),
    url('https://offertabs.s3.amazonaws.com/offer/soaf5r/site/media/6a72cf5f647570.83879856.png');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hidden {
  display: none !important;
}

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

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* Layout */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

.main-container {
  padding-bottom: 60px;
}

.main-content {
  flex: 1;
}

/* Header */
.site-header {
  padding: 24px 0;
  margin-bottom: 20px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 120px;
  width: auto;
  display: block;
}

.logo-right img {
  height: 180px;
  width: auto;
  display: block;
}

/* Glass Card Component */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding-top: 20px;
}

.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-text-col {
  flex: 1;
  text-align: left;
}

.hero-countdown-col {
  flex-shrink: 0;
}

.kicker {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(41, 171, 226, 0.15);
  border: 1px solid rgba(41, 171, 226, 0.3);
  color: var(--blue);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-text-col .kicker {
  margin-bottom: 20px;
}

.headline {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.subhead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.hero-text-col .subhead {
  margin: 0 0 16px 0;
  max-width: 100%;
}

.hero-text-col .subhead:last-of-type {
  margin-bottom: 0;
}

/* Split Column Countdown */
.countdown-wrapper {
  padding: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.countdown-label {
  font-size: 1.3rem;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.countdown-timer {
  display: flex;
  gap: 24px;
}

.cd-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cd-box span:first-child {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-main);
}

.cd-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 1px;
}

.countdown-end-date {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}

/* Step Sections */
.step-section {
  margin-bottom: 60px;
  animation: fadeIn 0.6s ease-out;
}

.step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 16px;
}

/* Essentials Grid */
#step1-section .step-title {
  margin-bottom: 40px;
}

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

.essential-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.essential-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.essential-card.selected {
  border-color: var(--orange);
  background: rgba(242, 117, 26, 0.1);
  box-shadow: 0 0 0 2px var(--orange), 0 10px 30px rgba(242, 117, 26, 0.2);
  transform: scale(1.05);
}

.essential-icon {
  width: 64px;
  height: 64px;
  color: var(--blue);
  transition: all 0.3s ease;
}

.essential-card:hover .essential-icon {
  color: var(--yellow);
}

.essential-card.selected .essential-icon {
  color: var(--orange);
}

.essential-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Form Styles */
.form-card {
  max-width: 700px;
  margin: 0 auto;
}

.step-desc {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-row .form-group {
  margin-bottom: 0;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-muted);
}

input[type="text"],
input[type="email"],
select {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  padding: 14px 16px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  border-radius: 8px;
  transition: all 0.3s ease;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(41, 171, 226, 0.1);
}

select {
  appearance: none;
  -webkit-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 d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select option {
  background-color: var(--navy);
  color: #fff;
}

.btn-primary {
  width: 100%;
  padding: 16px;
  background: var(--grad-primary);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-primary:hover {
  background: var(--grad-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(242, 117, 26, 0.3);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.fine-print {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 20px;
}

.rules-link {
  color: var(--text-muted);
  text-decoration: underline;
}

.rules-link:hover {
  color: var(--text-main);
}

.error-message {
  background: rgba(255, 77, 79, 0.1);
  border: 1px solid rgba(255, 77, 79, 0.3);
  color: #ffa3a3;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* Reveal / Thank You Screen */
.reveal-card {
  max-width: 700px;
  margin: 0 auto;
}

.success-badge {
  display: inline-block;
  background: rgba(41, 171, 226, 0.2);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid rgba(41, 171, 226, 0.3);
}

.reveal-header h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.blurb-text {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 30px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--orange);
  text-align: left;
}

.reveal-confirmation {
  background: rgba(255, 201, 61, 0.1);
  border: 1px solid rgba(255, 201, 61, 0.3);
  padding: 20px;
  border-radius: 12px;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 40px;
  text-align: left;
}

/* Share Panel */
.share-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 0 0 40px 0;
}

.share-panel h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.share-desc {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.copy-link-wrapper {
  display: flex;
  margin-bottom: 20px;
  gap: 10px;
}

.copy-link-wrapper input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social-shares {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}

.btn-social:hover {
  opacity: 0.9;
}

.btn-social svg {
  width: 20px;
  height: 20px;
}

.btn-social.fb { background: #1877f2; }
.btn-social.ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.btn-social.li { background: #0a66c2; }

/* Below Fold Info Sections */
.info-sections {
  margin-top: 60px;
  border-top: 1px solid var(--glass-border);
  padding-top: 60px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--blue);
}

.prize-img-wrapper {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.prize-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.prize-img-wrapper:hover .prize-img {
  transform: scale(1.05);
}

.prize-list {
  text-align: left;
  list-style: none;
}

.prize-list li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  color: var(--text-muted);
}

.prize-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: bold;
}

.steps-list {
  list-style: none;
}

.steps-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial p {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 600;
}

/* Sticky Rules Button */
.sticky-rules {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}

.sticky-rules-btn {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  padding: 12px 24px;
  border-radius: 99px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
}

.sticky-rules-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Modal */
.modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1001;
  padding: 40px;
}

.rules-modal-content {
  max-width: 800px;
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  color: var(--text-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--text-main);
}

.rules-text {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.rules-text ol {
  padding-left: 20px;
}

.rules-text li {
  margin-bottom: 16px;
}

.rules-text li:last-child {
  margin-bottom: 0;
}

.rules-text a {
  color: var(--blue);
  text-decoration: underline;
}

.rules-text a:hover {
  color: var(--yellow);
}

.rules-text p {
  margin-bottom: 16px;
}

.rules-text strong {
  color: var(--text-main);
}

/* Powered By */
.powered-by-wrapper {
  padding: 40px 0 20px;
  display: flex;
  justify-content: center;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-split {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }
  .hero-text-col {
    text-align: center;
  }
  .headline { font-size: 3rem; }
}

@media (max-width: 768px) {
  .logo img { height: 80px; }
  .logo-right img { height: 120px; }
  .site-header .container { flex-direction: column; gap: 15px; }
  .headline { font-size: 2.5rem; }
  .essentials-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { flex-direction: column; gap: 0; }
  .info-grid { grid-template-columns: 1fr; }
  .glass-card { padding: 30px 20px; }
  .social-shares { flex-direction: column; }
  
  .cd-box { min-width: 65px; padding: 12px 8px; }
  .cd-box span:first-child { font-size: 2.2rem; }
  
  .sticky-rules {
    bottom: 16px;
    right: 16px;
  }
  
  .sticky-rules-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}
