/* ============================================
   全站样式 - 奢华紫金主题 移动端优先
   ============================================ */

/* CSS Variables */
:root {
  --primary: #1a0a3e;
  --primary-light: #2d1566;
  --accent: #ffd700;
  --accent-hover: #ffec80;
  --danger: #dc3545;
  --success: #28a745;
  --text-primary: #f0f0f5;
  --text-secondary: #b8b8cc;
  --bg-dark: #0d0520;
  --bg-card: rgba(30, 15, 70, 0.85);
  --bg-card-alt: rgba(45, 21, 102, 0.7);
  --border-gold: rgba(255, 215, 0, 0.3);
  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  --max-width: 1200px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.8;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

a:hover {
  color: var(--accent-hover);
}

ul, ol {
  list-style: none;
}

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

/* ============================================
   Header / Navigation (NOT sticky)
   ============================================ */
.site-header {
  background: linear-gradient(135deg, var(--primary) 0%, #0d0520 100%);
  border-bottom: 2px solid var(--accent);
  position: relative;
  z-index: 100;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.site-logo img {
  height: 50px;
  width: auto;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 24px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background: var(--accent);
  color: var(--primary);
}

.main-nav {
  display: none;
  background: var(--primary-light);
  border-top: 1px solid var(--border-gold);
}

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

.nav-list {
  display: flex;
  flex-direction: column;
}

.nav-list li {
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.nav-list a {
  display: block;
  padding: 14px 20px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
  background: rgba(255, 215, 0, 0.1);
  color: var(--accent);
  padding-left: 28px;
}

/* Desktop nav */
@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
  .main-nav {
    display: block;
    background: transparent;
    border-top: none;
  }
  .nav-list {
    flex-direction: row;
    justify-content: center;
    gap: 4px;
  }
  .nav-list li {
    border-bottom: none;
  }
  .nav-list a {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
  }
  .nav-list a:hover,
  .nav-list a.active {
    padding-left: 16px;
    background: rgba(255, 215, 0, 0.15);
  }
}

/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb {
  padding: 12px 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--text-secondary);
}

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

.breadcrumb span {
  margin: 0 6px;
  color: rgba(255, 215, 0, 0.4);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section img {
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 5, 32, 0.3), rgba(13, 5, 32, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  color: var(--accent);
  margin-bottom: 20px;
}

/* ============================================
   CTA Button
   ============================================ */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--danger) 0%, #b02a37 100%);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
  color: #fff;
}

.cta-btn-gold {
  background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
  color: var(--primary);
}

.cta-btn-gold:hover {
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  color: var(--primary);
}

/* ============================================
   Section Styles
   ============================================ */
.section {
  padding: 40px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(45, 21, 102, 0.3) 0%, rgba(13, 5, 32, 0.5) 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--accent);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section-title p {
  color: var(--text-secondary);
  margin-top: 10px;
  font-size: 15px;
}

/* ============================================
   Video Module
   ============================================ */
.video-module {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border-gold);
}

.video-module img {
  width: 100%;
  transition: var(--transition);
}

.video-module:hover img {
  transform: scale(1.03);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(220, 53, 69, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.video-play-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.video-module:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(220, 53, 69, 1);
}

/* Video modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  width: 100%;
  max-width: 800px;
  position: relative;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
}

.video-modal video {
  width: 100%;
  border-radius: var(--radius);
}

/* ============================================
   Game Cards Grid
   ============================================ */
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .game-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .game-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.game-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  transition: var(--transition);
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--accent);
}

.game-card-img {
  position: relative;
  overflow: hidden;
}

.game-card-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: var(--transition);
}

.game-card:hover .game-card-img img {
  transform: scale(1.08);
}

.game-card-body {
  padding: 14px;
}

.game-card-body h3 {
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 6px;
}

.game-card-body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}

.game-card-body .cta-btn {
  width: 100%;
  padding: 10px;
  font-size: 14px;
}

/* ============================================
   Tournament Section
   ============================================ */
.tournament-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .tournament-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tournament-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tournament-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  transition: var(--transition);
}

.tournament-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.tournament-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tournament-card-body {
  padding: 18px;
}

.tournament-card-body h3 {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 8px;
}

.tournament-card-body p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.tournament-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-gold);
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============================================
   Articles Section
   ============================================ */
.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .article-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.15);
  transition: var(--transition);
}

.article-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-card-body {
  padding: 16px;
}

.article-card-body h3 {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.article-card-body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.article-date {
  font-size: 12px;
  color: rgba(255, 215, 0, 0.6);
  margin-top: 10px;
}

/* ============================================
   Author / Expert Section
   ============================================ */
.author-box {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border-gold);
  margin-bottom: 20px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .author-box {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
}

.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  object-fit: cover;
  flex-shrink: 0;
}

.author-info h3 {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 4px;
}

.author-info .author-title {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 8px;
}

.author-info p {
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================
   Reviews Section
   ============================================ */
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(255, 215, 0, 0.12);
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--accent);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.review-user-info h4 {
  font-size: 15px;
  color: var(--text-primary);
}

.review-user-info .review-meta {
  font-size: 12px;
  color: var(--text-secondary);
}

.review-stars {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.review-content {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.review-date {
  font-size: 12px;
  color: rgba(255, 215, 0, 0.5);
  margin-top: 10px;
}

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

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid rgba(255, 215, 0, 0.12);
  overflow: hidden;
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question::after {
  content: "+";
  font-size: 22px;
  color: var(--accent);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 10px;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ============================================
   Payment Section
   ============================================ */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .payment-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.payment-item {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: var(--transition);
}

.payment-item:hover {
  border-color: var(--accent);
}

.payment-item img {
  width: 100%;
  height: 50px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.payment-item span {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ============================================
   License Section
   ============================================ */
.license-section {
  text-align: center;
}

.license-badge {
  max-width: 200px;
  margin: 0 auto 20px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
}

.license-info {
  max-width: 700px;
  margin: 0 auto;
}

.license-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 10px;
}

/* ============================================
   Promo / Recharge Section
   ============================================ */
.promo-banner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--accent);
  position: relative;
}

.promo-banner img {
  width: 100%;
}

/* ============================================
   About Section
   ============================================ */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 16px;
  text-indent: 2em;
}

.about-content h3 {
  color: var(--accent);
  font-size: 20px;
  margin: 24px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
}

/* ============================================
   Customer Support Section
   ============================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .support-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.support-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.12);
  transition: var(--transition);
}

.support-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.support-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  border-radius: 50%;
}

.support-card h4 {
  color: var(--accent);
  font-size: 15px;
  margin-bottom: 6px;
}

.support-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============================================
   Responsible Gaming
   ============================================ */
.responsible-gaming {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: var(--radius);
  padding: 24px;
}

.responsible-gaming h3 {
  color: var(--danger);
  margin-bottom: 12px;
}

.responsible-gaming p,
.responsible-gaming li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.responsible-gaming ul {
  margin-top: 10px;
  padding-left: 20px;
  list-style: disc;
}

.age-badge {
  width: 80px;
  margin: 16px auto 0;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: linear-gradient(180deg, var(--primary) 0%, #050210 100%);
  border-top: 2px solid var(--accent);
  padding: 40px 0 20px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h4 {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-gold);
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-col p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-social img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transition: var(--transition);
}

.footer-social img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid var(--border-gold);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-payments {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.footer-payments img {
  height: 30px;
  width: auto;
  border-radius: 4px;
}

.footer-age {
  width: 50px;
  margin: 10px auto;
}

/* ============================================
   Inner Page Styles
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, #2d1566 100%);
  padding: 30px 0;
  border-bottom: 2px solid var(--accent);
}

.page-header h1 {
  font-size: clamp(1.3rem, 4vw, 2rem);
  color: var(--accent);
  text-align: center;
}

.page-content {
  padding: 30px 0;
}

.page-content h2 {
  color: var(--accent);
  font-size: 22px;
  margin: 28px 0 14px;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
}

.page-content h3 {
  color: var(--text-primary);
  font-size: 18px;
  margin: 20px 0 10px;
}

.page-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 14px;
}

.page-content img {
  border-radius: var(--radius);
  margin: 16px 0;
  border: 1px solid var(--border-gold);
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

.page-content table th,
.page-content table td {
  padding: 12px 16px;
  border: 1px solid var(--border-gold);
  text-align: left;
}

.page-content table th {
  background: rgba(255, 215, 0, 0.1);
  color: var(--accent);
}

.page-content table td {
  color: var(--text-secondary);
}

/* ============================================
   APP Download Page
   ============================================ */
.app-hero {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, #2d1566 50%, var(--primary) 100%);
}

.app-hero img {
  max-width: 300px;
  margin: 0 auto 20px;
}

.app-download-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin: 20px 0;
}

@media (min-width: 768px) {
  .app-download-btns {
    flex-direction: row;
    justify-content: center;
  }
}

.app-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 30px 0;
}

@media (min-width: 768px) {
  .app-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.app-feature-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border-gold);
}

.app-feature-item h4 {
  color: var(--accent);
  font-size: 15px;
  margin-bottom: 6px;
}

.app-feature-item p {
  font-size: 13px;
  color: var(--text-secondary);
}

.app-screenshots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.app-screenshots img {
  border-radius: var(--radius);
  border: 1px solid var(--border-gold);
}

.qr-code {
  max-width: 180px;
  margin: 20px auto;
  border: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 10px;
  background: #fff;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--accent); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none; }

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
  .site-header, .site-footer, .cta-btn {
    display: none;
  }
  body {
    background: #fff;
    color: #000;
  }
}
