:root {
  --gold: #E8B84B;
  --gold-dark: #C8860A;
  --gold-light: #F5D080;
  --dark: #0A0A0F;
  --dark2: #111118;
  --dark3: #1A1A24;
  --card: #16161F;
  --border: rgba(232,184,75,0.2);
  --text: #E8E8E8;
  --muted: #A0A0A0;
  --green: #3DDC84;
  --red: #FF4D4D;
  --purple: #9146FF;
  --blue: #4A9EFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Animated gradient background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(232,184,75,0.08) 0%, transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(145,70,255,0.08) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
  animation: backgroundPulse 12s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3rem;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background: transparent;
}

.btn-primary {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(232,184,75,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,184,75,0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-secondary:hover {
  background: rgba(232,184,75,0.1);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.2rem;
}

/* Header */
.header {
  padding: 32px 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(232,184,75,0.3);
}

.logo-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.logo-text h1 {
  font-size: 1.8rem;
  margin: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-text p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.hero-content {
  animation: fadeInUp 0.6s ease-out;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,184,75,0.15);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 3.2rem;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-video {
  background: var(--dark2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  animation: fadeInRight 0.6s ease-out;
  transition: transform 0.3s ease;
}

.hero-video:hover {
  transform: translateY(-5px);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Stats */
.stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  background: rgba(22,22,31,0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px 32px;
  border: 1px solid var(--border);
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
}

/* Featured Product */
.featured {
  margin-bottom: 80px;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--card) 100%);
  border-radius: 32px;
  padding: 48px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.featured::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232,184,75,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.featured-image {
  text-align: center;
}

.featured-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 30px rgba(0,0,0,0.3);
}

.featured-content h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.featured-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  margin: 20px 0;
}

/* Affiliate Banner */
.affiliate-banner {
  background: linear-gradient(90deg, rgba(145,70,255,0.2) 0%, rgba(232,184,75,0.2) 100%);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  margin-bottom: 80px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.affiliate-banner:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(145,70,255,0.2);
}

.affiliate-banner h2 {
  margin-bottom: 16px;
}

.affiliate-banner .btn {
  margin-top: 24px;
}

/* Section */
.section {
  margin-bottom: 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 30px rgba(232,184,75,0.1);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.card-badge {
  display: inline-block;
  background: rgba(232,184,75,0.15);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer a {
  color: var(--gold);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .stats {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .featured-content h3 {
    font-size: 1.5rem;
  }

  .affiliate-banner {
    padding: 32px 24px;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark2);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}