/* ============================================
   ROOPOKIES - Mobile App Page
   Modern, Dynamic, Mobile-First Design
   ============================================ */

/* CSS Variables - Color Scheme */
:root {
  --bg-main: #060714;
  --bg-section: #0e1024;
  --bg-card: #171a36;
  --accent-primary: #f5a623;
  --accent-secondary: #b24bff;
  --accent-cta: #ff4b6e;
  --accent-success: #00d4aa;
  --accent-warning: #ff9500;
  --text-main: #ffffff;
  --text-muted: #a0a3b1;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-glow: rgba(245, 166, 35, 0.3);
  --shadow-glow-secondary: rgba(178, 75, 255, 0.3);
  --gradient-primary: linear-gradient(135deg, var(--accent-primary), #ff8c42);
  --gradient-secondary: linear-gradient(135deg, var(--accent-secondary), #8b5cf6);
  --gradient-cta: linear-gradient(135deg, var(--accent-cta), #ff6b8a);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Ubuntu', 'Roboto', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  background: rgba(14, 16, 36, 0.8);
  border-bottom: 1px solid var(--border-soft);
  padding: 0.75rem 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--accent-primary);
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: var(--text-muted);
  opacity: 0.5;
}

.breadcrumb-item:last-child {
  color: var(--accent-primary);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 7, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 997;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hamburger-menu:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hamburger-menu span {
  width: 24px;
  height: 2.5px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
  position: absolute;
}

.hamburger-menu span:nth-child(1) {
  top: 12px;
}

.hamburger-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-menu span:nth-child(3) {
  bottom: 12px;
}

.hamburger-menu.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

.hamburger-menu.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.logo {
  justify-self: center;
  grid-column: 2;
}

.logo img {
  height: 50px;
  width: auto;
}

.navbar-spacer {
  display: none;
}

.navbar-menu {
  display: none;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar-menu.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: rgba(6, 7, 20, 0.98);
  z-index: 1000;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}

.navbar-menu li {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

.navbar-menu li a {
  display: block;
  text-decoration: none;
  width: 100%;
  padding: 1rem;
  color: var(--text-main);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-menu li a:hover,
.navbar-menu li a.active {
  color: var(--accent-primary);
  background: rgba(245, 166, 35, 0.1);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-main);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 2px solid var(--border-soft);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-primary);
  transform: translateY(-3px);
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.1rem;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-main), var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   HERO SECTION
   ============================================ */

.app-hero {
  position: relative;
  padding: 5rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-main) 50%, #0a0b1a 100%);
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(245, 166, 35, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(178, 75, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 75, 110, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.app-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.app-hero-text h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-main);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.app-hero-text > p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.hero-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  color: var(--text-muted);
  position: relative;
  line-height: 1.7;
}

.hero-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 600;
}

/* Phone Showcase */
.app-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-showcase {
  position: relative;
}

.phone-frame {
  width: 280px;
  height: 580px;
  background: linear-gradient(145deg, #2a2d4a 0%, #1a1d35 100%);
  border-radius: 40px;
  padding: 10px;
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #000;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-main);
  border-radius: 32px;
  padding: 2rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.screen-header {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
}

.screen-logo {
  height: 30px;
  width: auto;
}

.screen-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mini-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  flex: 1;
}

.mini-game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  aspect-ratio: 1;
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

@keyframes pulse {
  0%, 100% { 
    opacity: 0.6;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.02);
    border-color: var(--accent-primary);
  }
}

.screen-balance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem;
  background: var(--bg-card);
  border-radius: 10px;
  font-size: 0.85rem;
}

.screen-balance span:first-child {
  color: var(--text-muted);
}

.balance-amount {
  color: var(--accent-primary);
  font-weight: 700;
}

.screen-play-btn {
  width: 100%;
  padding: 0.875rem;
  background: var(--gradient-primary);
  color: var(--bg-main);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(40px);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* ============================================
   APP QUESTION SECTION
   ============================================ */

.app-question-section {
  padding: 5rem 0;
  background: var(--bg-section);
}

.app-question-content {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.app-question-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.app-question-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.app-question-text li {
  padding: 0.6rem 0;
  padding-left: 1.75rem;
  color: var(--text-muted);
  position: relative;
  line-height: 1.7;
}

.app-question-text li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-size: 1.5rem;
  line-height: 1;
}

.app-question-text strong {
  color: var(--text-main);
}

.app-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.app-option-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.app-option-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: 0 15px 40px rgba(245, 166, 35, 0.1);
}

.app-option-card.warning-card {
  border-color: rgba(255, 149, 0, 0.3);
}

.app-option-card.warning-card:hover {
  border-color: var(--accent-warning);
  box-shadow: 0 15px 40px rgba(255, 149, 0, 0.1);
}

.option-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.app-option-card h3 {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.option-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.option-list li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
  position: relative;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.95rem;
}

.option-list li:last-child {
  border-bottom: none;
}

.app-option-card:not(.warning-card) .option-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-success);
  font-weight: 700;
}

.warning-card .option-list li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: var(--accent-warning);
}

/* ============================================
   BROWSER PLAY SECTION
   ============================================ */

.app-browser-section {
  padding: 5rem 0;
  background: var(--bg-main);
}

.browser-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

.browser-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.browser-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.browser-step:hover {
  border-color: var(--accent-primary);
  transform: translateX(8px);
}

.browser-step .step-number {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--bg-main);
  flex-shrink: 0;
}

.browser-step .step-content h4 {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.browser-step .step-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.browser-step .step-content li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
}

.browser-step .step-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
}

.step-note {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 8px;
  color: var(--text-main);
  font-size: 0.9rem;
  font-style: italic;
}

.browser-benefits {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.browser-benefits h3 {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  text-align: center;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-soft);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-item .benefit-icon {
  width: 28px;
  height: 28px;
  background: rgba(0, 212, 170, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-success);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.benefit-item span:last-child {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============================================
   HOME SCREEN SECTION
   ============================================ */

.app-home-screen-section {
  padding: 5rem 0;
  background: var(--bg-section);
}

.home-screen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.home-screen-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.home-screen-card:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 15px 40px rgba(245, 166, 35, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-soft);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--bg-main);
}

.card-header h3 {
  font-size: 1.3rem;
  color: var(--text-main);
  margin: 0;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  counter-reset: step-counter;
}

.steps-list li {
  counter-increment: step-counter;
  padding: 0.75rem 0;
  padding-left: 2.5rem;
  color: var(--text-muted);
  position: relative;
  line-height: 1.7;
  border-bottom: 1px solid var(--border-soft);
}

.steps-list li:last-child {
  border-bottom: none;
}

.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.steps-list li strong {
  color: var(--text-main);
}

.card-note {
  padding: 1rem;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   ANDROID APK SECTION
   ============================================ */

.app-android-section {
  padding: 5rem 0;
  background: var(--bg-main);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.android-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.android-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2rem;
}

.android-card.warning {
  border-color: rgba(255, 75, 110, 0.3);
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(255, 75, 110, 0.05) 100%);
}

.android-card h3 {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.android-card.warning h3 {
  color: var(--accent-cta);
}

.android-card p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.android-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.android-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
  position: relative;
  line-height: 1.7;
}

.android-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
}

.android-card.warning li::before {
  content: '⚠';
  color: var(--accent-cta);
}

.android-warning-banner {
  background: rgba(255, 149, 0, 0.1);
  border: 2px solid var(--accent-warning);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.warning-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.warning-content h4 {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.warning-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.warning-content li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
  position: relative;
  line-height: 1.7;
}

.warning-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-warning);
}

.warning-note {
  padding: 1rem;
  background: rgba(255, 149, 0, 0.15);
  border-radius: 8px;
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   iOS SECTION
   ============================================ */

.app-ios-section {
  padding: 5rem 0;
  background: var(--bg-section);
}

.ios-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.ios-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.ios-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.ios-text > ul > li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
  position: relative;
  line-height: 1.7;
}

.ios-text > ul > li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
}

.ios-text h3 {
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.ios-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ios-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border-radius: 8px;
}

.ios-benefit .benefit-icon {
  color: var(--accent-success);
  font-weight: 700;
}

.ios-benefit span:last-child {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.ios-recommendation {
  padding: 1.5rem;
  background: rgba(245, 166, 35, 0.1);
  border-left: 4px solid var(--accent-primary);
  border-radius: 8px;
}

.ios-recommendation p {
  margin: 0;
  color: var(--text-main);
}

.ios-browsers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  position: sticky;
  top: 100px;
}

.browser-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: var(--bg-section);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  width: 100%;
  justify-content: center;
  transition: all 0.3s ease;
}

.browser-badge:hover {
  border-color: var(--accent-primary);
  transform: translateX(5px);
}

.browser-icon {
  font-size: 2rem;
}

.browser-badge span:last-child {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
}

/* ============================================
   BANKING SECTION
   ============================================ */

.app-banking-section {
  padding: 5rem 0;
  background: var(--bg-main);
}

.banking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.banking-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.banking-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: 0 15px 40px rgba(245, 166, 35, 0.1);
}

.banking-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.banking-card h3 {
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.banking-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.banking-card li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
  position: relative;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.95rem;
}

.banking-card li:last-child {
  border-bottom: none;
}

.banking-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
}

.banking-warning {
  padding: 1.5rem 2rem;
  background: rgba(255, 75, 110, 0.1);
  border: 1px solid rgba(255, 75, 110, 0.3);
  border-radius: 12px;
  text-align: center;
}

.banking-warning p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

.banking-warning strong {
  color: var(--text-main);
}

/* ============================================
   PROS & CONS SECTION
   ============================================ */

.app-pros-cons-section {
  padding: 5rem 0;
  background: var(--bg-section);
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pros-column,
.cons-column {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2rem;
}

.pros-column {
  border-top: 3px solid var(--accent-success);
}

.cons-column {
  border-top: 3px solid var(--accent-primary);
}

.pros-column h3 {
  font-size: 1.5rem;
  color: var(--accent-success);
  margin-bottom: 1.5rem;
}

.cons-column h3 {
  font-size: 1.5rem;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
}

.pros-list,
.cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-list li,
.cons-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
  line-height: 1.7;
  align-items: flex-start;
}

.pros-list li:last-child,
.cons-list li:last-child {
  border-bottom: none;
}

.icon-plus {
  width: 28px;
  height: 28px;
  background: rgba(0, 212, 170, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-success);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.icon-warning {
  width: 28px;
  height: 28px;
  background: rgba(245, 166, 35, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.app-faq-section {
  padding: 5rem 0;
  background: var(--bg-main);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-primary);
}

.faq-item summary {
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  padding: 0 2rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.app-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-section) 0%, rgba(245, 166, 35, 0.05) 100%);
  border-top: 1px solid var(--border-soft);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.cta-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-main);
  border-top: 1px solid var(--border-soft);
  padding: 4rem 0 2rem;
  margin-top: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 3rem;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.age-badge {
  width: 60px;
  height: 60px;
  background: var(--gradient-cta);
  color: var(--text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.gamble-responsibly {
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .app-hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-list {
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .app-hero-text h1 {
    font-size: 2.25rem;
  }

  .app-options-grid {
    grid-template-columns: 1fr;
  }

  .browser-layout {
    grid-template-columns: 1fr;
  }

  .browser-benefits {
    position: static;
  }

  .home-screen-grid {
    grid-template-columns: 1fr;
  }

  .android-layout {
    grid-template-columns: 1fr;
  }

  .ios-content {
    grid-template-columns: 1fr;
  }

  .ios-browsers {
    position: static;
    flex-direction: row;
    justify-content: center;
  }

  .browser-badge {
    width: auto;
    padding: 1rem 2rem;
  }

  .banking-grid {
    grid-template-columns: 1fr;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .logo {
    grid-column: 2;
    justify-self: center;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 7, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 998;
    display: flex !important;
    list-style: none;
    margin: 0;
  }

  .navbar-menu.active {
    transform: translateX(0);
  }

  .navbar-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border-soft);
  }

  .navbar-menu li:last-child {
    border-bottom: none;
  }

  .navbar-menu li a {
    display: block;
    padding: 1.25rem 1rem;
    font-size: 1.1rem;
  }

  .app-hero {
    padding: 4rem 0;
    min-height: auto;
  }

  .app-hero-text h1 {
    font-size: 1.85rem;
  }

  .phone-frame {
    width: 250px;
    height: 520px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .android-warning-banner {
    flex-direction: column;
    text-align: center;
  }

  .cta-text h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .navbar {
    padding: 1rem;
  }

  .app-hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .phone-frame {
    width: 220px;
    height: 460px;
  }

  .section-header h2 {
    font-size: 1.65rem;
  }

  .app-option-card,
  .home-screen-card,
  .android-card,
  .banking-card,
  .pros-column,
  .cons-column {
    padding: 1.5rem;
  }

  .browser-step {
    flex-direction: column;
    text-align: center;
  }

  .browser-step .step-number {
    margin: 0 auto;
  }

  .ios-browsers {
    flex-direction: column;
  }

  .browser-badge {
    width: 100%;
  }
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
