/* FIFA 2026 Album Tips - Main Stylesheet */

/* ============ CSS VARIABLES ============ */
:root {
  --primary: #D4380D;
  --primary-dark: #A32D0A;
  --secondary: #722F17;
  --accent: #F5A623;
  --accent-light: #FFD180;
  --bg-light: #FDF8F3;
  --bg-dark: #1A1410;
  --bg-dark-secondary: #2A2420;
  --text-primary: #2D2420;
  --text-light: #FFFFFF;
  --text-muted: #8B7355;
  --success: #52C41A;
  --border: #E8DED3;
  --shadow: rgba(45, 36, 32, 0.1);
  --shadow-lg: rgba(45, 36, 32, 0.15);
  
  /* Spacing */
  --section-padding: 80px;
  --container-padding: 24px;
  --card-radius: 16px;
  --btn-radius: 8px;
  
  /* Typography */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Playfair Display', serif;
  
  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-medium: 300ms ease;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(48px, 8vw, 72px); }
h2 { font-size: clamp(36px, 5vw, 56px); }
h3 { font-size: clamp(28px, 4vw, 40px); }
h4 { font-size: clamp(22px, 3vw, 28px); }

.text-accent {
  font-family: var(--font-accent);
  font-style: italic;
}

/* ============ UTILITIES ============ */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding) 0;
}

.section--dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section--primary {
  background-color: var(--primary);
  color: var(--text-light);
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent-color { color: var(--accent); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--btn-radius);
  transition: var(--transition-fast);
}

.btn--primary {
  background-color: var(--primary);
  color: var(--text-light);
}

.btn--primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 56, 13, 0.3);
}

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

.btn--outline:hover {
  background-color: var(--primary);
  color: var(--text-light);
}

.btn--large {
  padding: 20px 48px;
  font-size: 18px;
}

.btn--cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: var(--text-light);
  box-shadow: 0 4px 16px rgba(212, 56, 13, 0.4);
}

.btn--cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(212, 56, 13, 0.5);
}

/* ============ NAVIGATION ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-medium);
}

.navbar.scrolled {
  background-color: rgba(26, 20, 16, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px var(--shadow-lg);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__logo svg {
  width: 32px;
  height: 32px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links {
  display: flex;
  gap: 32px;
}

.navbar__link {
  color: var(--text-light);
  font-weight: 500;
  opacity: 0.8;
  transition: var(--transition-fast);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-fast);
}

.navbar__link:hover {
  opacity: 1;
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__cta {
  padding: 12px 24px;
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: var(--btn-radius);
  font-weight: 600;
}

.navbar__cta:hover {
  background-color: var(--primary-dark);
}

/* ============ NAVBAR DROPDOWN ============ */
.navbar__dropdown {
  position: relative;
}

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

.navbar__dropdown-toggle svg {
  transition: transform var(--transition-fast);
}

.navbar__dropdown:hover .navbar__dropdown-toggle svg {
  transform: rotate(180deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(8px);
}

.navbar__dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.navbar__dropdown-item:hover {
  background-color: rgba(212, 56, 13, 0.2);
  opacity: 1;
  color: var(--accent);
}

/* ============ CONTACT BOX ============ */
.contact-box {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
  border-radius: var(--card-radius);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
  border: 1px solid rgba(245, 166, 35, 0.2);
}

.contact-box h2 {
  color: var(--text-light);
  margin-bottom: 16px;
}

.contact-box p {
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 24px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: rgba(245, 166, 35, 0.15);
  border: 1px solid var(--accent);
  border-radius: 50px;
  color: var(--accent);
  font-weight: 600;
  transition: var(--transition-fast);
}

.contact-link:hover {
  background-color: var(--accent);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.contact-link svg {
  width: 20px;
  height: 20px;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition-fast);
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--primary);
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(26, 20, 16, 0.7) 0%,
    rgba(26, 20, 16, 0.5) 50%,
    rgba(26, 20, 16, 0.8) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--text-light);
  padding: 120px 24px 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background-color: rgba(245, 166, 35, 0.2);
  border: 1px solid var(--accent);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero__title {
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero__title span {
  color: var(--accent);
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(18px, 3vw, 24px);
  opacity: 0.9;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--accent);
}

.hero__stat-label {
  font-size: 14px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============ FEATURED TIPS ============ */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.tip-card {
  background: white;
  border-radius: var(--card-radius);
  padding: 32px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition-medium);
  border: 1px solid transparent;
}

.tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-lg);
  border-color: var(--accent);
}

.tip-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tip-card__icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.tip-card__title {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.tip-card__text {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============ STATS SECTION ============ */
.stats-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(245,166,35,0.1)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 24px;
}

.stat-item__value {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 16px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============ ARTICLES SECTION ============ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.article-card {
  background: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition-medium);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 012px 40px var(--shadow-lg);
}

.article-card__image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.article-card:hover .article-card__image img {
  transform: scale(1.1);
}

.article-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background-color: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
}

.article-card__content {
  padding: 24px;
}

.article-card__title {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--secondary);
  line-height: 1.3;
}

.article-card__excerpt {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.article-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
}

.article-card__read-more svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

.article-card__read-more:hover svg {
  transform: translateX(4px);
}

/* ============ APP PROMO SECTION ============ */
.app-promo {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.app-promo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-promo__content h2 {
  margin-bottom: 24px;
}

.app-promo__content h2 span {
  color: var(--accent);
}

.app-promo__text {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 32px;
}

.app-promo__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.app-promo__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-promo__feature svg {
  width: 24px;
  height: 24px;
  color: var(--success);
  flex-shrink: 0;
}

.app-promo__image {
  position: relative;
  display: flex;
  justify-content: center;
}

.app-promo__image img {
  max-width: 100%;
  border-radius: var(--card-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============ FAQ SECTION ============ */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  background: white;
  border-radius: var(--card-radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow);
}

.faq-item__question {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  background: white;
  transition: var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  transition: var(--transition-fast);
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 24px 24px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-light);
  text-align: center;
  padding: 60px 24px;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* ============ FOOTER ============ */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 24px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand h3 {
  font-size: 32px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__brand p {
  opacity: 0.7;
  line-height: 1.7;
}

.footer__column h4 {
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--accent);
}

.footer__column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__column a {
  opacity: 0.7;
  transition: var(--transition-fast);
}

.footer__column a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.6;
  font-size: 14px;
}

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .app-promo__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .app-promo__features {
    align-items: center;
  }
  
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 48px;
  }
  
  .navbar__links {
    display: none;
  }
  
  .navbar__toggle {
    display: flex;
  }
  
  .hero__stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .stats-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
  }
}

/* ============ ARTICLE PAGE STYLES ============ */
.article-header {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary) 100%);
  color: var(--text-light);
  padding: 140px 0 60px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 24px;
}

.breadcrumb a {
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  opacity: 1;
  color: var(--accent);
}

.breadcrumb span:not(:last-child) {
  opacity: 0.5;
}

.article-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.article-category {
  background-color: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.article-read-time {
  display: flex;
  align-items: center;
  font-size: 14px;
  opacity: 0.7;
}

.article-title {
  font-size: clamp(36px, 5vw, 56px);
  max-width: 800px;
  margin-bottom: 16px;
}

.article-subtitle {
  font-size: 20px;
  opacity: 0.8;
  max-width: 600px;
}

.article-content {
  padding: 60px 0;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
}

.article-section {
  margin-bottom: 48px;
}

.article-section h2 {
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.article-section p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.article-section p.lead-text {
  font-size: 22px;
  color: var(--secondary);
  font-weight: 500;
}

.info-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

.info-box h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--secondary);
}

.info-box ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-box li {
  line-height: 1.6;
}

.stats-comparison {
  background: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-row.total {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

.stat-row .stat-label {
  opacity: 0.8;
}

.stat-row .stat-value {
  font-family: var(--font-heading);
  font-size: 24px;
}

.rarity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.rarity-card {
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}

.rarity-card.common {
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
}

.rarity-card.uncommon {
  background: #FFF8E1;
  border: 1px solid #FFE082;
}

.rarity-card.rare {
  background: #E3F2FD;
  border: 1px solid #90CAF9;
}

.rarity-card.legendary {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  border: 1px solid var(--accent);
}

.rarity-label {
  font-family: var(--font-heading);
  font-size: 20px;
  display: block;
  margin-bottom: 8px;
}

.rarity-card p {
  font-size: 14px;
  opacity: 0.8;
}

.purchase-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 24px 0;
}

.purchase-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--shadow);
}

.purchase-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.purchase-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.app-feature-highlight {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px var(--shadow);
}

.app-feature-highlight .feature-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-feature-highlight .feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.app-feature-highlight h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--secondary);
}

.app-feature-highlight p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.cta-inline {
  text-align: center;
  margin: 32px 0;
}

.tips-list {
  counter-reset: tips;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tips-list li{
  counter-increment: tips;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: 8px;
  line-height: 1.6;
}

.tips-list li::before {
  content: counter(tips);
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--primary);
  min-width: 40px;
}

.final-cta {
  text-align: center;
  padding: 40px 0;
}

/* ============ TIP DETAIL STYLES ============ */
.tip-detail {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px var(--shadow);
}

.tip-number {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--primary);
  line-height: 1;
  min-width: 60px;
}

.tip-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.tip-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============ APP HERO SECTION ============ */
.app-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary) 100%);
  padding: 140px 0 80px;
  color: white;
}

.app-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(245, 166, 35, 0.2);
  border: 1px solid var(--accent);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

.app-hero__content h1 {
  font-size: clamp(48px, 6vw, 72px);
  margin-bottom: 8px;
}

.app-hero__content h1 span {
  color: var(--accent);
}

.app-tagline {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 24px;
}

.app-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.app-rating .stars {
  display: flex;
  gap: 4px;
}

.app-rating .stars svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  fill: var(--accent);
}

.app-rating span {
  font-size: 14px;
  opacity: 0.8;
}

.app-actions {
  margin-bottom: 16px;
}

.app-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.7;
}

.app-hero__image img {
  border-radius: var(--card-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============ WHY SWAP26 SECTION ============ */
.why-swap26 {
  background: var(--bg-light);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.feature-card {
  background: white;
  padding: 32px;
  border-radius: var(--card-radius);
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition-medium);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}

.feature-card .feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card .feature-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
  background: white;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step {
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--primary);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 36px;
  color: white;
  margin: 0 auto 20px;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.step-content p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============ COMPARISON TABLE ============ */
.comparison {
  background: var(--bg-light);
}

.comparison-table {
  margin-top: 48px;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--bg-dark);
  color: white;
  font-family: var(--font-heading);
  font-size: 18px;
}

.comparison-table th.highlight {
  background: var(--primary);
}

.comparison-table td {
  font-size: 16px;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table td.highlight {
  background: rgba(212, 56, 13, 0.05);
  font-weight: 600;
}

.comparison-table .check {
  width: 24px;
  height: 24px;
  color: var(--success);
}

.comparison-table .cross {
  width: 24px;
  height: 24px;
  color: #FF4D4F;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: white;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 32px;
  border-radius: var(--card-radius);
  box-shadow: 0 4px 20px var(--shadow);
}

.testimonial-content {
  margin-bottom: 24px;
}

.testimonial-content p {
  font-family: var(--font-accent);
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: var(--secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  color: white;
}

.testimonial-author strong {
  display: block;
  font-size: 16px;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============ SAFETY RULES ============ */
.safety-rules {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.safety-rule {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--shadow);
}

.rule-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rule-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.rule-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--secondary);
}

.rule-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============ MINI TIPS GRID ============ */
.tips-grid-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.mini-tip {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--shadow);
}

.mini-tip .tip-icon {
  font-size: 24px;
}

.mini-tip p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ============ WARNING BOX ============ */
.warning-box {
  background: #FFF2F0;
  border: 1px solid #FFCCC7;
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}

.warning-box h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #FF4D4F;
}

.scam-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scam-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #434343;
}

.scam-list li::before {
  content: '⚠️';
}

/* ============ RELATED ARTICLES ============ */
.related-articles {
  background: var(--bg-light);
  padding: 60px 0;
}

.related-articles h2 {
  text-align: center;
  margin-bottom: 32px;
}

/* ============ ADDITIONAL RESPONSIVE ============ */
@media (max-width: 1024px) {
  .rarity-grid,
  .purchase-options {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .step:not(:last-child)::after {
    display: none;
  }
  
  .app-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .app-hero__image {
    order: -1;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .rarity-grid,
  .purchase-options,
  .tips-grid-mini {
    grid-template-columns: 1fr;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .tip-detail {
    flex-direction: column;
    gap: 16px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
    font-size: 14px;
  }
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--text-light);
}

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  color: white;
}