/* ========================================
   HOOKED ON YUTZ - DESIGN SYSTEM
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Colors */
  --hoy-blue: #1565C0;
  --hoy-blue-dark: #0D47A1;
  --hoy-orange: #FF6B00;
  --hoy-orange-dark: #E55A00;
  
  /* App-specific colors */
  --gh-primary: #1565C0;
  --gh-dark: #0D47A1;
  --gc-primary: #7C3AED;
  --gc-dark: #6D28D9;
  --gg-primary: #0891b2;
  --gg-dark: #0e7490;
  
  /* Neutrals */
  --dark: #1e293b;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --light: #f8fafc;
  --border: #e2e8f0;
  --white: #ffffff;
  
  /* Status */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #dc2626;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  
  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', monospace;
  
  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  
  /* Layout */
  --max-width: 1100px;
  --header-height: 72px;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--hoy-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
svg { flex-shrink: 0; }

/* ========================================
   HEADER / NAVIGATION
   ======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  text-decoration: none;
}

.logo:hover { text-decoration: none; }

.logo img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.15s;
}

.nav-desktop a:hover {
  color: var(--dark);
  text-decoration: none;
}

.nav-desktop .dropdown {
  position: relative;
}

.nav-desktop .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-desktop .dropdown-toggle svg {
  width: 14px;
  height: 14px;
}

.nav-desktop .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm) 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.15s;
  margin-top: var(--space-sm);
}

.nav-desktop .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-desktop .dropdown-menu a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.85rem;
}

.nav-desktop .dropdown-menu a:hover {
  background: var(--light);
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--dark);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: var(--space-lg);
  overflow-y: auto;
  z-index: 999;
}

.nav-mobile.active { display: block; }

.nav-mobile a {
  display: block;
  padding: var(--space-md) 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}

.nav-mobile-section {
  margin-top: var(--space-lg);
}

.nav-mobile-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.page-content {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.section {
  margin-bottom: var(--space-3xl);
}

.section:last-child { margin-bottom: 0; }

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

/* ========================================
   HERO SECTIONS
   ======================================== */

.hero {
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero > * { position: relative; z-index: 1; }

/* Brand-specific heroes */
.hero--blue {
  background: linear-gradient(135deg, var(--hoy-blue-dark) 0%, var(--hoy-blue) 100%);
  color: var(--white);
}

.hero--gh {
  background: linear-gradient(135deg, var(--gh-dark) 0%, var(--gh-primary) 100%);
  color: var(--white);
}

.hero--gc {
  background: linear-gradient(135deg, #1e1b4b 0%, var(--gc-primary) 100%);
  color: var(--white);
}

.hero--gg {
  background: linear-gradient(135deg, var(--dark) 0%, var(--gg-primary) 100%);
  color: var(--white);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

@media (max-width: 640px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
}

.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-xl);
  border: 3px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}

.hero-text { flex: 1; }

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.hero-tagline {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn--primary {
  background: var(--hoy-orange);
  color: var(--white);
}

.btn--primary:hover { background: var(--hoy-orange-dark); }

.btn--secondary {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn--secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline {
  background: transparent;
  color: var(--hoy-blue);
  border: 2px solid var(--hoy-blue);
}

.btn--outline:hover {
  background: var(--hoy-blue);
  color: var(--white);
}

.btn svg { width: 18px; height: 18px; }

/* Store buttons */
.store-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .store-buttons { justify-content: center; }
}

.store-buttons a {
  display: block;
  transition: transform 0.2s;
}

.store-buttons a:hover { transform: scale(1.05); }
.store-buttons img { height: 48px; width: auto; }

/* Price badge */
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  margin-top: var(--space-md);
}

.price-badge-amount {
  color: var(--white);
  font-weight: 700;
}

.price-badge-note {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
}

/* ========================================
   CARDS
   ======================================== */

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.2s;
}

.card:hover {
  border-color: var(--hoy-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--hoy-blue) 0%, var(--hoy-blue-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Card grids */
.card-grid {
  display: grid;
  gap: var(--space-lg);
}

.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .card-grid--2, .card-grid--3 { grid-template-columns: 1fr; }
}

/* App cards (for home page) */
.app-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.app-card:hover { text-decoration: none; }

.app-card-logo {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
}

.app-card h3 { color: var(--dark); }

.app-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-top: var(--space-sm);
}

.app-badge--available {
  background: #E3F2FD;
  color: var(--hoy-blue);
}

.app-badge--coming {
  background: #fef3c7;
  color: #d97706;
}

/* ========================================
   CALLOUT BOXES
   ======================================== */

.callout {
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.callout--blue {
  background: #E3F2FD;
  border: 2px solid var(--hoy-blue);
}

.callout--blue p {
  color: var(--hoy-blue);
  font-weight: 600;
  font-size: 1.1rem;
}

.callout--warning {
  background: #fef3c7;
  border-left: 4px solid var(--warning);
  text-align: left;
}

.callout--warning p { color: #78350f; }

/* ========================================
   FAQ / ACCORDION
   ======================================== */

.faq-section {
  margin-bottom: var(--space-2xl);
}

.faq-section-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--light);
  margin-bottom: var(--space-lg);
}

.faq-section-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--hoy-blue) 0%, var(--hoy-blue-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-section-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.faq-section-header h2 {
  font-size: 1.3rem;
}

.faq-item {
  margin-bottom: var(--space-lg);
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.faq-item p {
  color: #475569;
}

.faq-item ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
  color: #475569;
}

.faq-item li { margin-bottom: var(--space-sm); }

/* ========================================
   CTA SECTIONS
   ======================================== */

.cta-section {
  padding: var(--space-3xl) var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-section > * { position: relative; z-index: 1; }

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-section > p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   STEPS / PROCESS
   ======================================== */

.steps {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.step {
  text-align: center;
  max-width: 180px;
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--hoy-blue);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.step h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.step p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ========================================
   TABLES
   ======================================== */

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  font-weight: 600;
  background: var(--light);
}

/* ========================================
   QUICK LINKS
   ======================================== */

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 600px) {
  .quick-links { grid-template-columns: 1fr; }
}

.quick-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s;
}

.quick-link:hover {
  background: #E3F2FD;
  text-decoration: none;
}

.quick-link-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--hoy-blue) 0%, var(--hoy-blue-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-link-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.quick-link h3 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.quick-link p {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.flex { display: flex; }
.flex-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* ========================================
   RESPONSIVE IMAGES (from Squarespace CDN)
   ======================================== */

.profile-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 640px) {
  .profile-img {
    width: 200px;
    height: 200px;
  }
}

/* ========================================
   APP-SPECIFIC COLOR OVERRIDES
   ======================================== */

/* Get Hooked */
.gh .card:hover { border-color: var(--gh-primary); }
.gh .card-icon { background: linear-gradient(135deg, var(--gh-primary) 0%, var(--gh-dark) 100%); }
.gh .step-num { background: var(--gh-primary); }
.gh .cta-section { background: linear-gradient(135deg, var(--gh-dark) 0%, var(--gh-primary) 100%); }

/* Get Chalked */
.gc .card:hover { border-color: var(--gc-primary); }
.gc .card-icon { background: linear-gradient(135deg, var(--gc-primary) 0%, var(--gc-dark) 100%); }
.gc .step-num { background: var(--gc-primary); }
.gc .cta-section { background: linear-gradient(135deg, #1e1b4b 0%, var(--gc-primary) 100%); }

/* Get Gone */
.gg .card:hover { border-color: var(--gg-primary); }
.gg .card-icon { background: linear-gradient(135deg, var(--gg-primary) 0%, var(--gg-dark) 100%); }
.gg .step-num { background: var(--gg-primary); }
.gg .cta-section { background: linear-gradient(135deg, var(--dark) 0%, var(--gg-primary) 100%); }

/* ========================================
   SPECIAL BADGES
   ======================================== */

.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: var(--space-sm);
}

.tag--exclusive {
  background: var(--hoy-orange);
  color: var(--white);
}

.tag--coming {
  background: var(--warning);
  color: var(--dark);
}

/* ========================================
   CONTACT / SUPPORT BOX
   ======================================== */

.contact-box {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
}

.contact-box h2 {
  margin-bottom: var(--space-md);
}

.contact-box p {
  margin-bottom: var(--space-sm);
  opacity: 0.9;
}

.contact-box a { color: inherit; text-decoration: underline; }

.response-times {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.response-time {
  background: rgba(255,255,255,0.15);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
}

.response-time strong { display: block; }

/* ========================================
   SHOP PAGE
   ======================================== */

.product-card {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

@media (max-width: 640px) {
  .product-card {
    flex-direction: column;
    text-align: center;
  }
}

.product-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.product-info p {
  color: var(--gray);
  margin-bottom: var(--space-md);
}

.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hoy-blue);
  margin-bottom: var(--space-md);
}

/* ========================================
   AFFILIATE LINKS PAGE
   ======================================== */

.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-md);
}

.affiliate-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s;
}

.affiliate-card:hover {
  border-color: #FF9900;
  box-shadow: var(--shadow-md);
}

.affiliate-card-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: var(--light);
  padding: var(--space-md);
}

.affiliate-card-body {
  padding: var(--space-md);
}

.affiliate-card h3 {
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
}

.affiliate-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: var(--space-md);
}

.affiliate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: #FF9900;
  color: var(--white);
  padding: 10px var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}

.affiliate-btn:hover {
  background: #e68a00;
  text-decoration: none;
}

.affiliate-btn svg {
  width: 16px;
  height: 16px;
}

.affiliate-category {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.affiliate-category-icon {
  width: 48px;
  height: 48px;
  background: #E3F2FD;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.affiliate-category h2 {
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.affiliate-category p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

/* ========================================
   YOUTUBE PAGE
   ======================================== */

.yt-subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: #FF0000;
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(255,0,0,0.3);
}

.yt-subscribe-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
  text-decoration: none;
}

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