/* ===================================================
   Venusbet.org - Global Stylesheet
   Modern, Minimal, Dark Theme
   =================================================== */

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #191237;
  --bg-secondary: #0a0321;
  --bg-tertiary: #1f1745;
  --bg-surface: #21194b;
  --bg-elevated: #1c134a;
  --bg-subtle: #35147d;
  --bg-overlay: #100536;
  --text-primary: #ffffff;
  --text-secondary: #d2e1fe;
  --text-muted: #8b8fa3;
  --brand-primary: #e5ac02;
  --brand-hover: #f5c518;
  --brand-dark: #c49302;
  --accent-green: #22c55e;
  --accent-red: #ef4444;
  --accent-blue: #3b82f6;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(229, 172, 2, 0.3);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(229, 172, 2, 0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
  --header-height: 70px;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

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

/* --- Skip to Content (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--brand-primary);
  color: var(--bg-secondary);
  padding: 12px 24px;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  top: 0;
  color: var(--bg-secondary);
}

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

/* --- Header / Navbar --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 3, 33, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  height: var(--header-height);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 36px;
  width: auto;
}

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

.nav-desktop a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--brand-primary);
  background: rgba(229, 172, 2, 0.08);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-primary);
  color: var(--bg-secondary);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--brand-hover);
  color: var(--bg-secondary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 3, 33, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px;
  overflow-y: auto;
  z-index: 999;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile.active {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile a {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  display: block;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--brand-primary);
  background: rgba(229, 172, 2, 0.08);
}

.nav-mobile .header-cta {
  margin-top: 16px;
  text-align: center;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 16px 0;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0.8125rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
}

.breadcrumb li a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.breadcrumb li a:hover {
  color: var(--brand-primary);
}

.breadcrumb li:last-child {
  color: var(--text-secondary);
}

.breadcrumb .separator {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* --- Hero Section --- */
.hero {
  padding: 60px 0 50px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-overlay) 50%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 172, 2, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229, 172, 2, 0.12);
  color: var(--brand-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(229, 172, 2, 0.2);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  color: var(--brand-primary);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-primary);
  color: var(--bg-secondary);
}

.btn-primary:hover {
  background: var(--brand-hover);
  color: var(--bg-secondary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: rgba(229, 172, 2, 0.05);
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 10px 20px;
}

.btn-lg {
  font-size: 1rem;
  padding: 16px 36px;
}

/* --- Section --- */
.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--bg-primary);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

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

/* --- Stats Grid --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-primary);
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --- Card Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(229, 172, 2, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: auto;
  transition: all var(--transition);
}

.card-link:hover {
  gap: 10px;
}

.card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.card-link:hover svg {
  transform: translateX(4px);
}

/* --- Bonus Cards --- */
.bonus-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}

.bonus-tab {
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  color: var(--text-secondary);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
  cursor: pointer;
}

.bonus-tab:hover,
.bonus-tab.active {
  background: var(--brand-primary);
  color: var(--bg-secondary);
  border-color: var(--brand-primary);
}

.bonus-category {
  display: none;
}

.bonus-category.active {
  display: block;
}

.bonus-category.active .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.bonus-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.bonus-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.bonus-card-body {
  padding: 20px;
}

.bonus-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.bonus-card-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.bonus-card-body .btn {
  width: 100%;
}

/* --- Content Section (Inner Pages) --- */
.content-section {
  padding: 40px 0;
}

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

.content-body .feature-list,
.content-body .steps,
.content-body .info-table,
.content-body .card-grid,
.content-body .social-grid {
  max-width: none;
  width: calc(100% + 200px);
  margin-left: -100px;
  position: relative;
}

@media (max-width: 1024px) {
  .content-body .feature-list,
  .content-body .steps,
  .content-body .info-table,
  .content-body .card-grid,
  .content-body .social-grid {
    width: 100%;
    margin-left: 0;
  }
}

.content-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 40px 0 16px;
  padding-top: 16px;
}

.content-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 28px 0 12px;
}

.content-body p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-body ul,
.content-body ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.content-body ul {
  list-style: disc;
}

.content-body ol {
  list-style: decimal;
}

.content-body li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.7;
}

.content-body a {
  color: var(--brand-primary);
  font-weight: 500;
}

.content-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* --- Info Box --- */
.info-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
}

.info-box.warning {
  border-left: 4px solid var(--brand-primary);
}

.info-box.success {
  border-left: 4px solid var(--accent-green);
}

.info-box.info {
  border-left: 4px solid var(--accent-blue);
}

.info-box h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* --- Steps --- */
.steps {
  counter-reset: step;
  margin: 24px 0;
}

.step {
  counter-increment: step;
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
}

.step:last-child {
  border-bottom: none;
}

.step::before {
  content: counter(step);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(229, 172, 2, 0.12);
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 172, 2, 0.2);
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- FAQ Accordion --- */
.faq-section {
  padding: 60px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--bg-surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
  gap: 16px;
}

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

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(229, 172, 2, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

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

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--brand-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

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

.faq-answer-inner {
  padding: 0 24px 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- Social Links --- */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.social-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.social-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.social-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.social-card-icon.twitter { background: rgba(29, 161, 242, 0.12); }
.social-card-icon.instagram { background: rgba(225, 48, 108, 0.12); }
.social-card-icon.telegram { background: rgba(0, 136, 204, 0.12); }

.social-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.social-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  margin: 40px 0;
}

.cta-banner h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.footer {
  background: var(--bg-overlay);
  border-top: 1px solid var(--border-color);
  padding: 48px 0 0;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-brand .logo {
  margin-bottom: 8px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

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

.footer-col a:hover {
  color: var(--brand-primary);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  padding: 0;
}

.footer-social a:hover {
  border-color: var(--brand-primary);
  background: rgba(229, 172, 2, 0.1);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-license {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 100%;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  margin-top: 0;
}

/* --- Feature List --- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

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

.feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(229, 172, 2, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.feature-text h3,
.feature-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
  margin-top: 0;
}

.feature-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* --- Table --- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.info-table th,
.info-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
}

.info-table th {
  background: var(--bg-elevated);
  font-weight: 600;
  color: var(--text-primary);
}

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

.info-table tr:last-child td {
  border-bottom: none;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }

  .header-cta.desktop-only {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .hero {
    padding: 40px 0 36px;
  }

  .section {
    padding: 44px 0;
  }

  .faq-section {
    padding: 44px 0;
  }

  .cta-banner {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .bonus-category.active {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .info-table th,
  .info-table td {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 20px 14px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .bonus-tabs {
    gap: 6px;
  }

  .bonus-tab {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .step {
    gap: 14px;
  }

  .step::before {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }
}

/* --- iOS Safe Area --- */
@supports (padding: env(safe-area-inset-bottom)) {
  .footer-bottom {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .nav-mobile {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Focus Visible --- */
:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* --- Print --- */
@media print {
  .header,
  .hamburger,
  .nav-mobile,
  .footer,
  .cta-banner,
  .btn {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .content-body p,
  .content-body li {
    color: #333;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  a::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }
}
