/* ==========================================================================
   frost-play.com - World of Warships Modern Landing Page Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Rajdhani:wght@600;700&display=swap');

:root {
  --bg-dark: #070c14;
  --bg-card: rgba(14, 23, 38, 0.75);
  --bg-card-hover: rgba(22, 36, 58, 0.88);
  --primary-orange: #ff5500;
  --primary-orange-hover: #ff7722;
  --orange-glow: rgba(255, 85, 0, 0.4);
  --gold-accent: #f3c86b;
  --gold-gradient: linear-gradient(135deg, #ffe599 0%, #f3c86b 50%, #c4922b 100%);
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #94a3b8;
  --border-light: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(243, 200, 107, 0.3);
  --font-main: 'Montserrat', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, #ff6611 0%, #e64a00 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 48px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--orange-glow), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all var(--transition-fast);
  z-index: 1;
}

.btn-cta.btn-sm {
  padding: 10px 24px;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(180deg, #ff7722 0%, #ff5500 100%);
  box-shadow: 0 12px 40px rgba(255, 85, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--orange-glow);
}

.btn-cta:focus-visible, .btn-secondary:focus-visible, .footer-link:focus-visible, .modal-close-custom:focus-visible, .form-input:focus-visible, a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-accent);
  outline-offset: 3px;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

/* ==========================================================================
   BLOCK 1: HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 60px;
  background: radial-gradient(circle at center, #101c2e 0%, #070c14 100%);
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.85) contrast(1.1);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(7, 12, 20, 0.45) 0%, rgba(7, 12, 20, 0.88) 100%),
              linear-gradient(to bottom, rgba(7, 12, 20, 0.6) 0%, transparent 40%, rgba(7, 12, 20, 0.95) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 150, 255, 0.2);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto 36px;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-cta-wrapper {
  margin-bottom: 50px;
}

/* Reward Cards Banner */
.rewards-banner-wrapper {
  width: 100%;
  max-width: 1100px;
  margin-top: 20px;
}

.rewards-title-sm {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: var(--gold-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.9;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
}

.reward-card {
  background: linear-gradient(180deg, rgba(20, 34, 54, 0.85) 0%, rgba(10, 18, 30, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(243, 200, 107, 0.2);
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
}

.reward-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-accent);
  box-shadow: 0 15px 35px rgba(243, 200, 107, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.reward-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 8px 8px 0 0;
  opacity: 0.7;
}

.reward-icon-container {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6));
}

.reward-icon-container svg {
  width: 100%;
  height: 100%;
}

.reward-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.reward-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 4px;
}

.section-tag-sm {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--primary-orange);
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255, 85, 0, 0.4);
}

/* ==========================================================================
   BLOCK 2: WHY PLAY WORLD OF WARSHIPS?
   ========================================================================== */
.block2-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0;
  background: url('../images/nav_bg_block2.webp') no-repeat center right / cover;
  overflow: hidden;
}

.block2-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(6, 12, 20, 0.97) 0%, 
    rgba(6, 12, 20, 0.90) 48%, 
    rgba(6, 12, 20, 0.35) 78%, 
    rgba(6, 12, 20, 0.65) 100%
  ),
  linear-gradient(180deg, 
    rgba(7, 12, 20, 0.95) 0%, 
    transparent 15%, 
    transparent 85%, 
    rgba(7, 12, 20, 0.98) 100%
  );
  z-index: 1;
}

.block2-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.block2-content-left {
  max-width: 660px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.section-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 40px;
  line-height: 1.6;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: linear-gradient(135deg, rgba(16, 28, 46, 0.82) 0%, rgba(9, 16, 28, 0.92) 100%);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--primary-orange);
  padding: 24px 26px;
  border-radius: 8px;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-item:hover {
  background: linear-gradient(135deg, rgba(22, 38, 62, 0.92) 0%, rgba(12, 22, 38, 0.96) 100%);
  border-color: rgba(255, 85, 0, 0.45);
  border-left-color: #ff7722;
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 85, 0, 0.25);
}

.feature-icon-wrapper {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.22) 0%, rgba(255, 85, 0, 0.06) 100%);
  border: 1px solid rgba(255, 85, 0, 0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  box-shadow: inset 0 0 12px rgba(255, 85, 0, 0.18);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.35) 0%, rgba(255, 85, 0, 0.12) 100%);
  border-color: var(--primary-orange);
  color: #ffffff;
  box-shadow: 0 0 15px var(--orange-glow);
}

.feature-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.feature-text-block {
  flex-grow: 1;
}

.feature-title-row {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.feature-desc {
  font-size: 0.98rem;
  color: #cbd5e1;
  line-height: 1.55;
}

.block2-cta-wrapper {
  margin-top: 36px;
}

/* ==========================================================================
   BLOCK 3: START PLAYING IN 3 SIMPLE STEPS
   ========================================================================== */
.block3-section {
  position: relative;
  padding: 110px 0;
  background: url('../images/nav_map_block3.webp') no-repeat center center / cover;
  text-align: center;
  overflow: hidden;
}

.block3-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 18, 30, 0.82) 0%, rgba(6, 11, 18, 0.95) 100%),
              linear-gradient(to bottom, rgba(7, 12, 20, 0.95) 0%, transparent 25%, transparent 75%, rgba(7, 12, 20, 0.98) 100%);
  z-index: 1;
}

.block3-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 50px 0 60px;
}

.step-card {
  background: linear-gradient(180deg, rgba(18, 30, 48, 0.85) 0%, rgba(10, 17, 28, 0.92) 100%);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--primary-orange);
  border-radius: 8px;
  padding: 36px 24px;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 85, 0, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 85, 0, 0.2);
}

.step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #c43c00 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px var(--orange-glow);
}

.step-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  text-transform: uppercase;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #04080e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 24px 30px;
  color: var(--text-muted);
  text-align: center;
  position: relative;
  z-index: 5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #cbd5e1;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  cursor: pointer;
  padding: 6px 10px;
  display: inline-block;
}

.footer-link:hover, .footer-link.active-link {
  color: var(--primary-orange);
}

.footer-disclaimer {
  max-width: 850px;
  margin: 0 auto;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ==========================================================================
   POLICY PAGES STYLING
   ========================================================================== */
.policy-body {
  background-color: #070c14;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.policy-header {
  background: #0b131e;
  border-bottom: 1px solid var(--border-light);
  padding: 16px 24px;
}

.policy-header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.policy-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
}

.logo-accent {
  color: var(--gold-accent);
}

.policy-container {
  flex-grow: 1;
  max-width: 960px;
  width: 100%;
  margin: 50px auto;
  padding: 0 20px;
}

.policy-card {
  background: linear-gradient(180deg, #0e1726 0%, #09101d 100%);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.policy-title {
  font-size: 2.4rem;
  color: var(--gold-accent);
  margin-bottom: 6px;
}

.policy-meta {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 14px;
}

.policy-intro {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 30px;
  line-height: 1.7;
}

.policy-section {
  margin-bottom: 30px;
}

.policy-section h2 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.policy-section p {
  color: #cbd5e1;
  margin-bottom: 12px;
  line-height: 1.7;
}

.policy-section ul {
  margin-left: 20px;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.policy-section li {
  margin-bottom: 8px;
}

.inline-link {
  color: var(--primary-orange);
  text-decoration: underline;
}

/* Cookie Preferences UI */
.cookie-group {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 18px;
}

.cookie-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cookie-header h3 {
  font-size: 1.2rem;
  color: #ffffff;
}

.cookie-status {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-left: 10px;
}

.cookie-status.always-active {
  color: var(--gold-accent);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #334155;
  transition: .3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--primary-orange);
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.cookie-notif {
  margin-top: 16px;
  padding: 12px;
  background: rgba(243, 200, 107, 0.15);
  border: 1px solid var(--gold-accent);
  color: var(--gold-accent);
  border-radius: 4px;
  text-align: center;
}

/* Support Page UI */
.support-search-wrapper {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
}

.support-search-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 14px 18px;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 1rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.support-cat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 24px;
  transition: border-color 0.2s;
}

.support-cat-card:hover {
  border-color: var(--primary-orange);
}

.support-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.support-cat-card h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.faq-section h2 {
  font-size: 1.6rem;
  color: var(--gold-accent);
  margin-bottom: 20px;
}

.faq-item {
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid var(--gold-accent);
  padding: 16px 20px;
  margin-bottom: 16px;
  border-radius: 0 4px 4px 0;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE DESIGN (PREMIUM MOBILE ADAPTATION)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .rewards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 768px) {
  /* Global Adjustments */
  html {
    font-size: 15px;
  }

  body {
    overflow-x: hidden;
  }

  /* Block 1: Hero Section Mobile */
  .hero-section {
    padding: 50px 16px 40px;
    min-height: auto;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6.5vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 14px;
    padding: 0 4px;
  }

  .hero-description {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 28px;
    color: #cbd5e1;
  }

  .hero-cta-wrapper {
    margin-bottom: 36px;
    width: 100%;
  }

  .btn-cta {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.15rem;
    letter-spacing: 1px;
    border-radius: 6px;
    min-height: 54px;
  }

  .rewards-banner-wrapper {
    margin-top: 10px;
  }

  .rewards-title-sm {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
  }

  /* Smart 2-column grid on mobile (5th item spans 2 columns) */
  .rewards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .rewards-grid .reward-card:nth-child(5) {
    grid-column: span 2;
  }

  .reward-card {
    padding: 14px 10px;
    border-radius: 6px;
  }

  .reward-icon-container {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
  }

  .reward-value {
    font-size: 1.05rem;
  }

  .reward-label {
    font-size: 0.7rem;
  }

  /* Block 2: Why Play Mobile (Single Column Layout) */
  .block2-section {
    padding: 50px 0;
    min-height: auto;
    background-position: center top;
  }

  .block2-overlay {
    background: linear-gradient(180deg, 
      rgba(7, 12, 20, 0.96) 0%, 
      rgba(7, 12, 20, 0.92) 50%, 
      rgba(7, 12, 20, 0.97) 100%
    );
  }

  .block2-container {
    padding: 0 16px;
  }

  .block2-content-left {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .section-title {
    order: 1;
    font-size: clamp(1.75rem, 6vw, 2.3rem);
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .section-subtitle {
    order: 2;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
    color: var(--text-muted);
  }

  .features-list {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
  }

  .feature-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 18px;
    background: rgba(14, 23, 38, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 4px solid var(--primary-orange);
    border-radius: 8px;
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .feature-item:hover, .feature-item:active {
    transform: translateY(-2px);
    background: rgba(20, 32, 52, 0.96);
  }

  .feature-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .feature-icon-wrapper svg {
    width: 22px;
    height: 22px;
  }

  .feature-title-row {
    font-size: 1.15rem;
    margin-bottom: 3px;
  }

  .feature-desc {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .block2-cta-wrapper {
    order: 4;
    width: 100%;
    margin-top: 28px;
  }

  .block2-cta-wrapper .btn-cta {
    width: 100%;
  }

  /* Block 3: 3 Steps Mobile */
  .block3-section {
    padding: 50px 0;
  }

  .block3-container {
    padding: 0 16px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 30px 0 36px;
  }

  .step-card {
    padding: 24px 18px;
    border-radius: 8px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    margin-bottom: 14px;
  }

  .step-text {
    font-size: 1.1rem;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 40px 16px 24px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
  }

  .footer-link {
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 4px 0;
  }

  .footer-disclaimer {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  /* Policy Pages Mobile */
  .policy-header {
    padding: 14px 16px;
  }

  .policy-header-container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .policy-header-container .btn-cta {
    width: auto;
  }

  .policy-container {
    margin: 24px auto;
    padding: 0 14px;
  }

  .policy-card {
    padding: 24px 16px;
  }

  .policy-title {
    font-size: 1.8rem;
  }

  .support-search-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-actions {
    flex-direction: column;
    gap: 12px;
  }

  .cookie-actions .btn-cta, .cookie-actions .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 12px 30px;
  }

  .reward-card {
    padding: 12px 8px;
  }

  .reward-value {
    font-size: 0.98rem;
  }
}

.modal-backdrop {
  display: none !important;
}

/* ==========================================================================
   BRAND FOOTER & CUSTOM MODALS (REGISTRATION & SUCCESS)
   ========================================================================== */

/* Brand Footer Info Styling */
.footer-brand-info {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-email-link {
  color: var(--primary-orange);
  text-decoration: underline;
}

/* Custom Modals System (Registration & Success) */
.modal-backdrop-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 8, 14, 0.88);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 16px;
}

.modal-backdrop-custom.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-window-custom {
  background: linear-gradient(180deg, #101c2e 0%, #09101d 100%);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 30px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(243, 200, 107, 0.15);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.modal-backdrop-custom.active .modal-window-custom {
  transform: scale(1);
}

.modal-close-custom {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 0.2s, outline 0.2s;
}

.modal-close-custom:hover {
  color: var(--primary-orange);
}

.modal-badge-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-accent);
  background: rgba(243, 200, 107, 0.12);
  border: 1px solid var(--border-gold);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.modal-title-custom {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.modal-title-custom.gold-text {
  color: var(--gold-accent);
}

.modal-subtitle-custom {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Registration Form Controls */
.reg-form .form-group {
  margin-bottom: 16px;
  text-align: left;
}

.reg-form label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #cbd5e1;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 13px 16px;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 0.98rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-orange);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 85, 0, 0.3);
}

.form-input option {
  background: #0d1726;
  color: #ffffff;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 24px;
  text-align: left;
}

.form-checkbox-group input {
  margin-top: 3px;
  accent-color: var(--primary-orange);
}

.form-checkbox-group label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  text-transform: none;
  letter-spacing: normal;
}

.btn-full {
  width: 100%;
}

/* Success Modal Details */
.success-icon-badge {
  font-size: 3rem;
  margin-bottom: 10px;
  line-height: 1;
}

.success-rewards-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.reward-pill {
  background: rgba(243, 200, 107, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-accent);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
}

.download-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 24px;
  text-align: left;
}

.download-label {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.progress-bar-container {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-orange) 0%, var(--gold-accent) 100%);
  transition: width 0.25s ease;
}

.download-status-text {
  font-size: 0.8rem;
  color: var(--gold-accent);
  font-weight: 600;
}
