﻿:root {
      --primary-gold: #f5a623;
      --primary-gold-light: #ffc857;
      --primary-gold-dark: #d4911e;
      --bg-white: #ffffff;
      --bg-light: #fdf8f0;
      --bg-cream: #fef9f0;
      --bg-card: #fffcf5;
      --text-dark: #1a1a1a;
      --text-primary: #333333;
      --text-secondary: #777777;
      --accent-green: #22c55e;
      --border-light: rgba(245,166,35,0.15);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', -apple-system, sans-serif;
      background: var(--bg-white);
      color: var(--text-dark);
      line-height: 1.5;
      overflow-x: hidden;
    }
    
    .hero {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 30px 20px;
      background: linear-gradient(180deg, #fffdf7 0%, #fff8e7 50%, #fff3d4 100%);
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: 20%;
      left: -20%;
      width: 300px;
      height: 300px;
      background: var(--primary-gold);
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.2;
    }
    
    .hero::after {
      content: '';
      position: absolute;
      bottom: 20%;
      right: -20%;
      width: 300px;
      height: 300px;
      background: var(--primary-gold-light);
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.25;
    }
    
    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 400px;
    }
    
    .logo-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(245,166,35,0.1);
      backdrop-filter: blur(10px);
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 24px;
      border: 1px solid var(--border-light);
      color: var(--primary-gold-dark);
    }
    
    .logo-badge i {
      color: var(--primary-gold);
    }
    
    .hero-title {
      font-size: 42px;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 16px;
      background: linear-gradient(135deg, var(--text-dark), var(--primary-gold), var(--primary-gold-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .hero-subtitle {
      font-size: 16px;
      color: var(--text-secondary);
      margin-bottom: 32px;
      line-height: 1.6;
    }
    
    .earnings-display {
      background: linear-gradient(135deg, var(--primary-gold), #f1a200);
      border-radius: 20px;
      padding: 24px 32px;
      margin-bottom: 32px;
      position: relative;
      overflow: hidden;
      color: #fff;
    }
    
    .earnings-display::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    }
    
    .earnings-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 2px;
      opacity: 0.9;
      margin-bottom: 4px;
    }
    
    .earnings-amount {
      font-size: 36px;
      font-weight: 900;
    }
    
    .earnings-note {
      font-size: 12px;
      opacity: 0.8;
      margin-top: 4px;
    }
    
    .stats-row {
      display: flex;
      justify-content: center;
      gap: 32px;
      margin-bottom: 0;
    }
    
    .stat-item {
      text-align: center;
    }
    
    .stat-value {
      font-size: 24px;
      font-weight: 800;
      color: var(--primary-gold-dark);
    }
    
    .stat-label {
      font-size: 11px;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.02); }
    }
    
    .scroll-hint {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      animation: bounce 2s infinite;
    }
    
    .scroll-hint i {
      font-size: 24px;
      color: var(--text-secondary);
    }
    
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(10px); }
    }
    
    .section {
      padding: 20px 20px;
      max-width: 500px;
      margin: 0 auto;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .section-tag {
      display: inline-block;
      background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 16px;
      color: #fff;
    }
    
    .section-title {
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 12px;
      color: var(--text-dark);
    }
    
    .section-desc {
      color: var(--text-secondary);
      font-size: 14px;
    }
    
    .brands-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    
    .brand-item {
      background: var(--bg-card);
      border-radius: 16px;
      padding: 20px 12px;
      text-align: center;
      border: 1px solid var(--border-light);
      transition: border-color 0.3s;
    }
    
    .brand-item:hover {
      border-color: var(--primary-gold);
    }
    
    .brand-item i {
      font-size: 32px;
      margin-bottom: 8px;
    }
    
    .brand-item span {
      display: block;
      font-size: 11px;
      color: var(--text-secondary);
    }
    
    .benefits-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    
    .benefit-pill {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      padding: 18px 16px;
      border-radius: 16px;
      font-size: 13px;
      font-weight: 600;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
      color: var(--text-dark);
    }
    
    .benefit-pill:hover {
      border-color: var(--primary-gold);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(245, 166, 35, 0.15);
    }
    
    .benefit-pill i {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
      color: #fff;
      border-radius: 12px;
      font-size: 18px;
    }
    
    .floating-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(20px);
      padding: 16px 20px;
      border-top: 1px solid var(--border-light);
      z-index: 1000;
    }
    
    .floating-cta-inner {
      max-width: 500px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    
    .floating-btn {
      background: #ef0000;
      border: none;
      padding: 14px 24px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 700;
      color: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      animation: pulse 2s infinite;
    }
    
    .floating-btn i {
      font-size: 18px;
    }
    
    @media (max-width: 400px) {
      .hero-title {
        font-size: 32px;
      }
      
      .earnings-amount {
        font-size: 28px;
      }
      
      .stats-row {
        gap: 20px;
      }
      
      .stat-value {
        font-size: 20px;
      }
    }

    @media (max-width: 600px) {
      .floating-cta-inner {
        justify-content: center;
      }

      .floating-btn {
        margin: 0 auto;
      }
    }
    
    body {
      padding-bottom: 80px;
    }
