/* ==========================================================================
   CINEMATCH LANDING PAGE DESIGN SYSTEM
   Theme: Vibrant Cinematic Dark Mode (HSL, Gradients, Glassmorphism, Micro-animations)
   ========================================================================== */

:root {
  --bg-dark: #0A0D14;
  --bg-card: rgba(15, 23, 42, 0.65);
  --bg-card-hover: rgba(30, 41, 59, 0.75);
  
  --primary-pink: #FF416C;
  --primary-purple: #8A2387;
  --gradient-main: linear-gradient(135deg, #FF416C 0%, #8A2387 100%);
  --gradient-hover: linear-gradient(135deg, #FF4B72 0%, #9C2797 100%);
  --gradient-cyan: linear-gradient(135deg, #48F2D1 0%, #00B4DB 100%);
  
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  
  --accent-cyan: #48F2D1;
  --accent-gold: #F59E0B;
  --accent-green: #10B981;
  
  --border-color: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(255, 65, 108, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 25px rgba(255, 65, 108, 0.35);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  position: relative;
}

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

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

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* BACKGROUND GLOWS */
.bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
}

.bg-glow-1 {
  top: -100px;
  right: -100px;
  background: rgba(255, 65, 108, 0.18);
}

.bg-glow-2 {
  top: 600px;
  left: -150px;
  background: rgba(138, 35, 135, 0.2);
}

/* GLASSMORPHISM CARD CLASS */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(255, 65, 108, 0.4);
  box-shadow: var(--shadow-glow);
}

/* TYPOGRAPHY UTILS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient-main);
  color: #FFF;
  box-shadow: 0 4px 20px rgba(255, 65, 108, 0.35);
}

.btn-primary:hover {
  background: var(--gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 65, 108, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-glow {
  animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 15px rgba(255, 65, 108, 0.4); }
  100% { box-shadow: 0 0 30px rgba(255, 65, 108, 0.8); }
}

.w-100 {
  width: 100%;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.brand-icon {
  font-size: 28px;
}

.brand-name .highlight {
  color: var(--primary-pink);
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  color: var(--text-main);
}

/* HERO SECTION */
.hero-section {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 65, 108, 0.12);
  border: 1px solid rgba(255, 65, 108, 0.3);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: #FF6B8B;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-pink);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-pink);
}

.hero-title {
  font-size: 52px;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-group {
  display: flex;
}

.avatar-group img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -12px;
  object-fit: cover;
}

.avatar-group img:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 13px;
  color: var(--text-muted);
}

.proof-text .stars {
  color: var(--accent-gold);
  font-size: 14px;
}

/* HERO VISUAL (MOCKUP) */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 320px;
  height: 600px;
  border-radius: 40px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 65, 108, 0.2);
  position: relative;
  overflow: hidden;
}

.phone-notch {
  width: 120px;
  height: 20px;
  background: #000;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 10px auto;
}

.phone-screen {
  width: 100%;
  height: calc(100% - 30px);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: var(--bg-dark);
}

.card-preview {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.card-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(10, 13, 20, 0.95) 0%, transparent 100%);
}

.card-match-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(16, 185, 129, 0.85);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
  color: #FFF;
}

.card-body {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  padding: 20px;
}

.card-header-info h2 {
  font-size: 20px;
  color: #FFF;
}

.card-location {
  font-size: 12px;
  color: var(--accent-cyan);
  margin-top: 2px;
}

.card-bio {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.tag {
  font-size: 10px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 8px;
  border-radius: 4px;
}

.phone-actions {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.action-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.circle-nope { background: #334155; }
.circle-star { background: var(--accent-cyan); color: #0F172A; }
.circle-like { background: var(--gradient-main); }

/* METRICS BAR */
.metrics-bar {
  padding: 40px 0;
  background: rgba(15, 23, 42, 0.4);
  border-y: 1px solid var(--border-color);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.metric-number {
  font-size: 36px;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px auto;
}

.section-tag {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-pink);
  letter-spacing: 1px;
}

.section-title {
  font-size: 38px;
  margin-top: 8px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
}

/* FEATURES SECTION */
.features-section {
  padding: 100px 0;
}

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

.feature-card {
  padding: 32px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}

.icon-cyan { background: rgba(72, 242, 209, 0.15); color: #48F2D1; }
.icon-pink { background: rgba(255, 65, 108, 0.15); color: #FF416C; }
.icon-purple { background: rgba(138, 35, 135, 0.15); color: #C084FC; }
.icon-amber { background: rgba(245, 158, 11, 0.15); color: #F59E0B; }
.icon-green { background: rgba(16, 185, 129, 0.15); color: #10B981; }
.icon-rose { background: rgba(244, 63, 94, 0.15); color: #F43F5E; }

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

/* DEMO SECTION */
/* =========================================
   COMO FUNCIONA
   ========================================= */
.how-section {
  padding: 100px 0;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

/* Número do passo */
.how-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(255, 65, 108, 0.4);
  position: relative;
  z-index: 1;
  margin-top: 24px;
}

/* Linha conectora vertical */
.how-step-connector {
  position: absolute;
  left: 23px;
  top: 72px;
  width: 2px;
  height: calc(100% - 48px);
  background: linear-gradient(to bottom, rgba(255,65,108,0.5), rgba(72,242,209,0.1));
  z-index: 0;
}

/* Card do passo */
.how-step-card {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 28px;
  margin-left: 20px;
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.how-step-card:hover {
  transform: translateX(6px);
  border-color: rgba(255,65,108,0.3);
}

/* Ícone do passo */
.how-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-step-icon svg {
  width: 24px;
  height: 24px;
}

/* Corpo de texto */
.how-step-body h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}

.how-step-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.demo-section {
  padding: 100px 0;
  background: rgba(15, 23, 42, 0.2);
}

.demo-card-container {
  display: flex;
  justify-content: center;
  position: relative;
  padding-bottom: 24px;
}

/* Cards de fundo — próximos matches */
.demo-bg-card {
  position: absolute;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-bg-card .demo-img-wrapper {
  height: 380px;
}

/* Card #2 — intermediário */
.demo-bg-card-2 {
  transform: scale(0.93) translateY(18px);
  filter: blur(3px) brightness(0.6);
  opacity: 0.75;
  z-index: 0;
}

/* Card #3 — mais atrás */
.demo-bg-card-3 {
  transform: scale(0.86) translateY(36px);
  filter: blur(6px) brightness(0.4);
  opacity: 0.5;
  z-index: -1;
}

/* Card principal fica na frente */
.interactive-card {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}


.demo-img-wrapper {
  position: relative;
  height: 380px;
}

.demo-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(16, 185, 129, 0.9);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 800;
}

.demo-content {
  padding: 24px;
}

.demo-content h3 {
  font-size: 22px;
}

.demo-sub {
  font-size: 13px;
  color: var(--accent-cyan);
  margin-top: 4px;
}

.demo-bio {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 24px;
}

.demo-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.demo-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}

.demo-nope {
  background: rgba(255, 255, 255, 0.08);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.demo-nope:hover {
  background: #EF4444;
  color: #FFF;
  transform: scale(1.1);
}

.demo-like {
  background: var(--gradient-main);
  color: #FFF;
  box-shadow: 0 4px 20px rgba(255, 65, 108, 0.4);
}

.demo-like:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 65, 108, 0.7);
}

.demo-match-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 13, 20, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.demo-match-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.demo-match-overlay h2 {
  font-size: 32px;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.demo-match-overlay p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* PRICING SECTION */
.pricing-section {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-vip {
  border-color: rgba(255, 65, 108, 0.5);
  box-shadow: var(--shadow-glow);
}

.vip-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--gradient-main);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
}

.plan-header h3 {
  font-size: 24px;
}

.plan-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
}

.plan-price {
  margin: 24px 0;
}

.plan-price .price {
  font-size: 42px;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
}

.plan-price .period {
  font-size: 14px;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  margin-bottom: 36px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--text-main);
}

.plan-features li.disabled {
  color: var(--text-dim);
}

.icon-check { color: var(--accent-green); width: 18px; }
.icon-x { color: var(--text-dim); width: 18px; }

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 100px 0;
  background: rgba(15, 23, 42, 0.2);
}

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

.testimonial-card {
  padding: 32px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-user img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user strong {
  display: block;
  font-size: 14px;
}

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

/* FAQ SECTION */
.faq-section {
  padding: 100px 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
}

.faq-question i {
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary-pink);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* DOWNLOAD CTA */
.download-section {
  padding: 100px 0;
}

.download-card {
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 65, 108, 0.15) 0%, rgba(138, 35, 135, 0.15) 100%);
  border-color: rgba(255, 65, 108, 0.3);
}

.download-content h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.download-content p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.app-store-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.store-btn:hover {
  border-color: var(--primary-pink);
  transform: translateY(-2px);
}

.store-icon {
  font-size: 28px;
  color: #FFF;
}

.store-btn div {
  text-align: left;
}

.store-btn .small-text {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.store-btn .big-text {
  font-size: 16px;
  font-weight: 700;
  color: #FFF;
}

/* FOOTER */
.footer {
  background: #07090E;
  border-top: 1px solid var(--border-color);
  padding-top: 60px;
}

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

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-pink);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero-grid,
  .features-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 40px;
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(10, 13, 20, 0.98);
    flex-direction: column;
    padding: 40px;
    transition: var(--transition);
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .app-store-btns {
    flex-direction: column;
    align-items: center;
  }
}

/* COOKIE CONSENT LEGAL BANNER */
.cookie-banner-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  padding: 18px 24px;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
  animation: slideUpCookie 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpCookie {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDownCookie {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(100%); opacity: 0; }
}

.cookie-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-text p {
  color: #E2E8F0;
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}

.cookie-banner-text p strong {
  color: #FFF;
}

.cookie-banner-text p a {
  color: #48F2D1;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.cookie-btn-primary {
  background: #E2E8F0;
  color: #0F172A;
}

.cookie-btn-primary:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #E2E8F0;
  border-color: rgba(255, 255, 255, 0.15);
}

.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

.cookie-btn-outline {
  background: transparent;
  color: #E2E8F0;
  border-color: rgba(255, 255, 255, 0.25);
}

.cookie-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .cookie-banner-container {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}
