:root {
  /* Premium Palette */
  --bg-base: #FFFDF7;
  --bg-gradient: radial-gradient(circle at center top, #ffffff 0%, #FFF8E1 100%);

  /* Text */
  --text-main: #2D2D2D;
  --text-muted: #5A5A5A;
  --text-gold: #996515;

  /* Brand Gradients */
  --grad-gold: linear-gradient(135deg, #E6C35C 0%, #C69C2D 100%);
  --grad-gold-hover: linear-gradient(135deg, #F0D375 0%, #D4AA3D 100%);

  --grad-red: linear-gradient(135deg, #E53935 0%, #C62828 100%);
  --grad-red-hover: linear-gradient(135deg, #EF5350 0%, #D32F2F 100%);

  --grad-green: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  --grad-green-hover: linear-gradient(135deg, #388E3C 0%, #2E7D32 100%);

  /* UI Cards */
  --card-bg: #FFFFFF;
  --card-border: 1px solid rgba(212, 175, 55, 0.2);
  --card-shadow: 0 10px 30px -5px rgba(198, 156, 45, 0.15);

  /* Spacing */
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;

  /* Typography */
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Radius */
  --radius-card: 24px;
  --radius-btn: 50px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  background-image: var(--bg-gradient);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: var(--spacing-sm);
  overflow-x: hidden;
}

.app-container {
  width: 100%;
  max-width: 500px;
  position: relative;
  padding-bottom: 4rem;
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-display);
  color: #1a1a1a;
  line-height: 1.15;
}

h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #1a1a1a, #4a4a4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 1.5rem;
  color: var(--text-gold);
  margin-bottom: 1rem;
  text-align: center;
}

p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

strong {
  color: var(--text-main);
  font-weight: 700;
}

.highlight-gold {
  color: #C69C2D;
  font-weight: 800;
}

/* Logo */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0 3rem;
}

.logo-icon {
  font-size: 2.5rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(198, 156, 45, 0.3));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-gold);
  font-weight: 700;
  border-bottom: 1px solid rgba(153, 101, 21, 0.3);
  padding-bottom: 4px;
}

/* Buttons */
.btn {
  width: 100%;
  padding: 1.2rem;
  border: none;
  border-radius: var(--radius-btn);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  color: white;
  margin-top: 1rem;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn:hover::after {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: scale(0.98);
}

.btn-gold {
  background: var(--grad-gold);
  box-shadow: 0 8px 20px rgba(198, 156, 45, 0.4);
}

.btn-red {
  background: var(--grad-red);
  box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
  font-size: 1.2rem;
}

.btn-green {
  background: var(--grad-green);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

/* Quiz Options */
.option-btn {
  background: white;
  border: 1px solid transparent;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
}

.option-btn::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #E0E0E0;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.2s;
}

.option-btn:hover {
  border-color: #E6C35C;
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(230, 195, 92, 0.15);
}

.option-btn:hover::before {
  border-color: #E6C35C;
  background: #FFF8E1;
}

/* Progress Bar */
.progress-wrapper {
  width: 100%;
  height: 6px;
  background: #F0F0F0;
  border-radius: 10px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--grad-gold);
  width: 0%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
}

/* Cards */
.content-box {
  background: white;
  border-radius: var(--radius-card);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--card-shadow);
  border: var(--card-border);
  position: relative;
  overflow: hidden;
}

.content-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}

.box-yellow::before {
  background: var(--grad-gold);
}

.box-pink::before {
  background: linear-gradient(90deg, #FF8A80, #EF5350);
}

.box-green::before {
  background: var(--grad-green);
}

.box-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.check-list li {
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.check-list li strong {
  color: var(--text-main);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #C69C2D;
  font-weight: 900;
  font-size: 1.1rem;
}

/* Price Tag */
.price-container {
  text-align: center;
  margin: 2.5rem 0;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-card);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.price-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 0.5rem;
}

.price-old {
  text-decoration: line-through;
  color: #BBB;
  font-size: 1.2rem;
}

.price-new {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: #2E7D32;
  line-height: 1;
  margin: 0.5rem 0;
  letter-spacing: -1px;
}

.price-tag-badge {
  display: inline-block;
  background: #FFF8E1;
  color: #8D6E63;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

/* Testimonial Cards */
.testimonial-card {
  background: #FFFDE7;
  /* Light yellow from screenshot */
  border: 1px solid #FBC02D;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.stars {
  color: #FBC02D;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.user-name {
  font-weight: 800;
  display: block;
  color: #000;
}

.user-handle {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #333;
  font-style: italic;
  line-height: 1.5;
}

/* Section Headers */
.section-header-box {
  background: #E0F2F1;
  /* Light green */
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
}

.section-header-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: #000;
  font-size: 1.1rem;
}

/* Animations */
.fade-in {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(230, 195, 92, 0.2);
  border-top-color: #C69C2D;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 3rem auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

border-radius: var(--radius-card);
padding: 2rem;
margin-bottom: 1.5rem;
box-shadow: var(--card-shadow);
border: var(--card-border);
position: relative;
overflow: hidden;
}

.content-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}

.box-yellow::before {
  background: var(--grad-gold);
}

.box-pink::before {
  background: linear-gradient(90deg, #FF8A80, #EF5350);
}

.box-green::before {
  background: var(--grad-green);
}

.box-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.check-list li {
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.check-list li strong {
  color: var(--text-main);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #C69C2D;
  font-weight: 900;
  font-size: 1.1rem;
}

/* Price Tag */
.price-container {
  text-align: center;
  margin: 2.5rem 0;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-card);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.price-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 0.5rem;
}

.price-old {
  text-decoration: line-through;
  color: #BBB;
  font-size: 1.2rem;
}

.price-new {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: #2E7D32;
  line-height: 1;
  margin: 0.5rem 0;
  letter-spacing: -1px;
}

.price-tag-badge {
  display: inline-block;
  background: #FFF8E1;
  color: #8D6E63;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

/* Testimonial Cards */
.testimonial-card {
  background: #FFFDE7;
  /* Light yellow from screenshot */
  border: 1px solid #FBC02D;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.stars {
  color: #FBC02D;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.user-name {
  font-weight: 800;
  display: block;
  color: #000;
}

.user-handle {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #333;
  font-style: italic;
  line-height: 1.5;
}

/* Section Headers */
.section-header-box {
  background: #E0F2F1;
  /* Light green */
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
}

.section-header-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: #000;
  font-size: 1.1rem;
}

/* Animations */
.fade-in {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(230, 195, 92, 0.2);
  border-top-color: #C69C2D;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 3rem auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Utilities */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

/* WhatsApp Text */
.whatsapp-text {
  font-size: 0.85rem;
  color: #2E7D32;
  margin-top: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Notifications */
#notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  pointer-events: none;
}

.notification-card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 320px;
  animation: slideInRight 0.5s ease-out forwards, fadeOut 0.5s ease-in 4.5s forwards;
  pointer-events: auto;
  border-left: 4px solid #C69C2D;
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-size: 0.95rem;
  color: #000;
  margin-bottom: 4px;
  line-height: 1.3;
}

.notification-title strong {
  font-weight: 800;
}

.notification-subtitle {
  font-size: 0.8rem;
  color: #666;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}