:root {
  --bg-color: #050505;
  --text-primary: #ffffff;
  --text-secondary: #888888;
  --accent-primary: #00ff9d; /* Neon Green */
  --accent-secondary: #ff00ff; /* Neon Magenta */
  --font-heading: "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden; /* Prevent double scrollbars */
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
}

/* Scroll Wrapper for strict snapping */
.scroll-wrapper {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

/* Typography & Animations */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
}

/* Flashing Effect */
/* Flashing Effect via Pseudo-element */
@keyframes flash-overlay-anim {
  0%,
  90% {
    opacity: 0;
  }
  91% {
    opacity: 0.15;
  } /* Much softer flash (was 1) */
  92% {
    opacity: 0;
  }
  93% {
    opacity: 0.1;
  } /* Softer second hit */
  96% {
    opacity: 0.05;
  } /* Gentle sustain */
  100% {
    opacity: 0;
  }
}

@keyframes flash-text-anim {
  0%,
  90% {
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  }
  91% {
    color: var(--text-primary);
    opacity: 0.8;
    text-shadow: 2px 0 var(--accent-primary);
  } /* Slight shift instead of invert */
  92% {
    text-shadow: -2px 0 var(--accent-secondary);
  }
  93% {
    color: var(--text-primary);
    opacity: 1;
    text-shadow: none;
  }
  96% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }
  100% {
    color: var(--text-primary);
  }
}

.flash-bg {
  position: relative; /* Ensure it can hold absolute pseudo */
}

.flash-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1; /* Below content (z-index 10), above background */
  opacity: 0;
  pointer-events: none;
  animation: flash-overlay-anim 6s infinite; /* Slower, more deliberate loop */
}

/* Navbar */
.navbar {
  position: absolute; /* Changed from fixed to work inside/outside context properly or stay fixed */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-primary);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

.nav-store-btn {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
  transition: all 0.2s;
}

.nav-store-btn:hover {
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.1);
}

.nav-btn-icon {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

/* Navbar Store Badges (Images directly) */
.store-badge-img-nav {
  height: 40px; /* Fixed height for navbar */
  width: auto;
  max-width: 135px; /* Prevent Google Play from being too wide */
  display: block;
}

/* Footer Store Badges - Fix Sizing */
.store-badge-link {
  display: inline-block;
  transition: transform 0.2s;
  margin: 0 10px;
}

.store-badge-link:hover {
  transform: translateY(-5px);
}

.store-badge-img {
  height: 60px; /* Fixed height for consistency */
  width: auto;
  display: block;
}

.glitch-text {
  position: relative;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.1;
  color: var(--text-primary);
  text-align: center;
  letter-spacing: -2px;
  animation: flash-text-anim 6s infinite; /* Synced with flash-overlay-anim */
}

/* Simple Glitch Effect */
.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.glitch-text::before {
  color: var(--accent-primary);
  z-index: -1;
  animation: glitch-anim-1 3s infinite linear alternate-reverse;
}

.glitch-text::after {
  color: var(--accent-secondary);
  z-index: -2;
  animation: glitch-anim-2 4s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0% {
    clip-path: inset(20% 0 80% 0);
    transform: translate(-2px, 0);
  }
  20% {
    clip-path: inset(60% 0 10% 0);
    transform: translate(2px, 0);
  }
  40% {
    clip-path: inset(40% 0 50% 0);
    transform: translate(-2px, 0);
  }
  60% {
    clip-path: inset(80% 0 5% 0);
    transform: translate(2px, 0);
  }
  80% {
    clip-path: inset(10% 0 60% 0);
    transform: translate(-2px, 0);
  }
  100% {
    clip-path: inset(30% 0 30% 0);
    transform: translate(2px, 0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip-path: inset(10% 0 60% 0);
    transform: translate(2px, 0);
  }
  20% {
    clip-path: inset(30% 0 20% 0);
    transform: translate(-2px, 0);
  }
  40% {
    clip-path: inset(70% 0 20% 0);
    transform: translate(2px, 0);
  }
  60% {
    clip-path: inset(20% 0 50% 0);
    transform: translate(-2px, 0);
  }
  80% {
    clip-path: inset(50% 0 10% 0);
    transform: translate(2px, 0);
  }
  100% {
    clip-path: inset(0% 0 80% 0);
    transform: translate(-2px, 0);
  }
}

/* Sections */
section,
footer {
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-primary {
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  text-align: center;
}

.hero-secondary {
  background: #000;
}

.hero-mockups {
  background: #050505;
}

.hero-content {
  max-width: 1200px;
  z-index: 10;
}

.sub-headline {
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--accent-primary);
  margin-top: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  animation: fadeIn 1s ease-out forwards;
}

/* Mockup Placeholders */
.mockup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  width: 100%;
}

.mockup-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 500px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease;
}

.mockup-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-primary);
  box-shadow: 0 0 30px rgba(0, 255, 157, 0.2);
}

.mockup-placeholder-text {
  font-family: var(--font-heading);
  color: var(--text-secondary);
  font-size: 1.5rem;
  letter-spacing: 2px;
}

/* Anonymous Chat Section */
.anon-chat-section {
  background-color: #000;
  background-image:
    linear-gradient(
      0deg,
      transparent 24%,
      rgba(0, 255, 157, 0.03) 25%,
      rgba(0, 255, 157, 0.03) 26%,
      transparent 27%,
      transparent 74%,
      rgba(0, 255, 157, 0.03) 75%,
      rgba(0, 255, 157, 0.03) 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      rgba(0, 255, 157, 0.03) 25%,
      rgba(0, 255, 157, 0.03) 26%,
      transparent 27%,
      transparent 74%,
      rgba(0, 255, 157, 0.03) 75%,
      rgba(0, 255, 157, 0.03) 76%,
      transparent 77%,
      transparent
    );
  background-size: 50px 50px;
}

.terminal-window {
  background: #0a0a0a;
  border: 1px solid #333;
  border-radius: 8px;
  width: 100%;
  max-width: 900px; /* Increased from 600px */
  padding: 1rem;
  font-family: "Courier New", Courier, monospace;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  margin-top: 2rem;
}

.sys-msg {
  color: #666; /* Gray for system messages */
  font-size: 0.9em;
  margin-bottom: 4px;
}

.chat-msg {
  color: #fff; /* White for general text */
  margin-bottom: 8px;
  display: block;
}

/* ... (dots/cursor unchanged) ... */

/* FAQ Section Styling (Restored) */
.faq-section {
  background-color: #080808;
  width: 100%;
}

.faq-container {
  width: 100%;
  max-width: 1000px;
  margin-top: 3rem;
  text-align: left;
}

details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

details:hover {
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.05);
}

summary {
  font-weight: 600;
  font-size: 1.2rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

summary::after {
  content: "+";
  font-size: 2rem;
  color: var(--accent-primary);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin-top: 1.2rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Logo Icon */
.logo-icon {
  height: 64px; /* Increased from 32px */
  width: auto;
  margin-right: 6px;
}

/* Navbar Store Badges (Images directly) */
/* ... existing navbar badge styles ... */

/* ... */

/* QR Code Section */
.qr-section {
  padding: 8rem 2rem;
  background: linear-gradient(to bottom, #000, #111);
  text-align: center;
}

/* Dual QR Container */
.qr-container {
  display: flex;
  justify-content: center;
  gap: 4rem; /* Space between columns */
  margin-top: 4rem;
  flex-wrap: wrap; /* Stack on mobile */
}

.qr-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.qr-box {
  width: 250px; /* Slightly smaller to fit two */
  height: 250px;
  background: #fff;
  padding: 8px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 255, 157, 0.3);
  transition: transform 0.3s;
  border: 2px dashed var(--accent-primary);
}

.qr-box:hover {
  transform: scale(1.05);
}

/* Placeholder for actual QR image */
.qr-placeholder {
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-primary);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}
.qr-placeholder img {
  width: 90%;
  height: 90%;
  object-fit: contain; /* Zachowuje proporcje obrazka, by nie zosta� rozci�gni�ty */
  display: block;
}

/* Footer & Rest */
footer {
  padding: 4rem 2rem;
  background: #000;
  border-top: 1px solid var(--accent-secondary);
  text-align: center;
}

.contact-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: transparent;
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 2rem;
}

.contact-button:hover {
  background: var(--accent-primary);
  color: #000;
  box-shadow: 0 0 20px var(--accent-primary);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-secondary);
  animation: bounce 2s infinite;
  cursor: pointer;
  font-size: 2rem;
}

@keyframes bounce {
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* Footer Links */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-link:hover {
  color: var(--accent-primary);
}

/* Responsiveness */
@media (max-width: 768px) {
  .glitch-text {
    font-size: 2.5rem; /* Smaller on mobile */
  }

  .sub-headline {
    font-size: 1rem;
  }

  section {
    padding: 4rem 1rem;
    min-height: auto; /* Allow content to dictate height on mobile if needed */
  }

  .hero-primary {
    min-height: 90vh; /* Keep hero tall though */
  }

  .mockup-grid {
    grid-template-columns: 1fr; /* Stack vertically */
    gap: 2rem;
  }

  .mockup-card {
    height: 350px; /* Shorter cards on mobile */
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }

  .nav-buttons .nav-store-btn span:not(.nav-btn-icon) {
    display: none;
  }

  .nav-buttons .nav-store-btn {
    padding: 0.5rem;
  }
}

/* --- FIXED MOCKUP STYLES --- */
.mockup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.mockup-card {
  background: rgba(20, 20, 20, 0.8) !important;
  border: 1px solid rgba(0, 255, 157, 0.2) !important; /* Emerald border requested */
  border-radius: 20px;
  padding: 10px; /* Small padding */
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: auto !important; /* Let content dictate, or fixed? User said "contain them" */
  display: block !important; /* Fix flex issues if any */
}

/* Enforce containment */
.mockup-card img {
  width: 100% !important;
  height: 450px !important;
  object-fit: cover !important;
  object-position: top;
  border-radius: 12px;
  display: block;
}

.mockup-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 157, 0.2);
}

.mockup-placeholder-text {
  display: none;
} /* Hide old placeholders if any remain */

/* --- LIGHTBOX STYLES --- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(0, 255, 157, 0.1);
  animation: zoomIn 0.3s ease;
  object-fit: contain;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

#lightbox-caption {
  /* Fixed ID selector to match HTML */
  margin: 15px 0;
  color: #ccc;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10002;
  padding: 10px;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 20px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  user-select: none;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

.lightbox-next {
  right: 20px;
}
.lightbox-prev {
  left: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
  color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.1);
}

/* --- MOBILE OPTIMIZATION (Max-Width: 768px) --- */
@media screen and (max-width: 768px) {
  /* Navbar Adjustments */
  .navbar {
    height: 60px; /* Reduced height */
    padding: 0 1rem;
  }

  .logo {
    font-size: 1rem; /* Smaller logo text */
    gap: 0.25rem;
  }

  .logo-icon {
    height: 24px; /* Smaller icon */
    margin-right: 5px;
  }

  .nav-buttons {
    gap: 0.5rem;
  }

  /* Store Badges - prevent overflow */
  .store-badge-img-nav {
    height: 28px !important; /* Smaller buttons */
    width: auto !important;
  }

  /* Hero 2 Typography */
  .hero-secondary h2 {
    font-size: 2rem !important; /* drastically reduced from 3.5rem */
  }

  .hero-secondary p {
    font-size: 1.1rem !important;
  }

  /* Chat Section */
  .anon-chat-section h2 {
    font-size: 2rem !important;
  }

  .terminal-window {
    padding: 1rem;
  }

  .terminal-body {
    font-size: 0.9rem; /* Smaller chat text */
    max-height: 300px;
  }

  /* Formatting for visibility without scroll */
  .hero-content {
    padding: 2rem 1rem; /* Less padding */
  }

  /* Mockups */
  .mockup-card {
    height: auto !important; /* ensure it wraps content if needed, currently fixed 450px overrides this */
  }

  /* Force image height smaller on mobile */
  .mockup-card img {
    height: 300px !important;
  }
}

/* --- MOBILE FAQ OPTIMIZATION & LANG SWITCHER --- */

/* Lang Switcher Styles */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
}

.lang-opt {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.lang-opt:hover {
  color: #fff;
}

.lang-opt.active {
  color: var(--accent-primary);
  font-weight: bold;
  border-bottom: 2px solid var(--accent-primary);
}

.lang-separator {
  color: #333;
}

@media screen and (max-width: 768px) {
  /* FAQ Refinements */
  .faq-container details summary {
    font-size: 1.1rem !important; /* Smaller question text */
    padding: 1rem !important; /* Reduced padding */
  }

  .faq-container details p {
    font-size: 0.95rem !important; /* Smaller answer text */
    padding: 0 1rem 1rem 1rem !important;
    line-height: 1.4;
  }

  /* Adjust Lang Switcher for Mobile Nav */
  .lang-switcher {
    margin-left: 0.5rem;
    font-size: 0.8rem;
  }
}

/* --- REPAIRED & ENHANCED MOBILE STYLES --- */

/* Base Variables & Desktop Defaults (Preserved/Restated) */
:root {
  --bg-color: #050505;
  --text-primary: #ffffff;
  --text-secondary: #aaaaaa;
  --accent-primary: #00ff9d;
  --font-heading: "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Desktop Container (Default) */
.legal-page {
  max-width: 800px;
  margin: 80px auto 4rem auto;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 12px;
}

/* Nav Desktop */
.legal-nav {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}
.legal-nav-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.legal-nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- MOBILE OVERRIDES (Max-Width: 768px) --- */
@media screen and (max-width: 768px) {
  /* Force 96% width and minimal margins */
  .legal-page {
    width: 96% !important;
    max-width: 96% !important;
    margin: 60px auto 10px auto !important;
    padding: 1.5rem 1rem !important;
    box-sizing: border-box; /* Critical for width calculation */
  }

  /* Nav Layout: Return Link <-> Lang Switcher */
  .legal-nav-main {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
  }

  /* Nav Links Horizontal Scroll */
  .legal-nav-links {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
  }

  .legal-pill-link {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  /* Typography Reductions */
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
}

/* --- LANGUAGE SWITCHER BUTTONS (Global) --- */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05); /* Container bg */
  padding: 4px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-opt {
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  user-select: none; /* Prevent text selection */
  -webkit-tap-highlight-color: transparent; /* Remove mobile tap highlight */
}

.lang-opt:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.lang-opt.active {
  color: #000;
  background: var(--accent-primary);
  box-shadow: 0 2px 5px rgba(0, 255, 157, 0.3);
}

.lang-separator {
  display: none; /* Hide separator in button mode */
}

/* --- MOBILE REFINEMENTS V3 (Navbar Fit & Compact FAQ) --- */
@media screen and (max-width: 768px) {
  /* NAVBAR - aggressively layout to fit everything */
  .navbar {
    padding: 0 0.5rem !important; /* Minimal side padding */
    gap: 0 !important;
  }

  .logo {
    margin-right: 0 !important; /* Remove right margin */
    font-size: 0.9rem !important; /* Slightly smaller logo text */
    letter-spacing: 0px !important;
    flex: 0 0 auto; /* Don't shrink logo too much */
  }

  .logo-icon {
    margin-right: 0px !important; /* Tighter icon */
  }

  .nav-buttons {
    gap: 2px !important; /* Minimal gap between buttons */
    flex-wrap: nowrap;
    margin-left: auto; /* Push to right */
  }

  /* Store Badges - Tiny version */
  .store-badge-link-nav {
    display: flex;
    align-items: center;
  }
  .store-badge-img-nav {
    height: 22px !important; /* Drastically reduced from 28px */
    width: auto !important;
  }

  /* Lang Switcher - Compact */
  .lang-switcher {
    margin-left: 2px !important;
    padding: 2px !important;
    background: transparent !important; /* Remove bg to save visual clutter if needed, or keep */
    border: none !important;
  }
  .lang-opt {
    padding: 2px 6px !important; /* Smaller hit area padding */
    font-size: 0.75rem !important; /* Smaller font */
  }

  /* FAQ - COMPACT BOXES */
  .faq-container details {
    margin-bottom: 0.5rem !important; /* Tighter vertical stack */
    padding: 0 !important;
  }

  /* Target the summary box height directly */
  .faq-container details summary {
    padding: 0.5rem 0.8rem !important; /* Reduce vertical padding significantly */
    line-height: 1.2 !important;
    min-height: 0 !important; /* Remove any min-height constraints */
  }

  /* Adjust content padding */
  .faq-container details p {
    padding: 0 0.8rem 0.8rem 0.8rem !important;
    margin-top: 0.2rem !important;
  }
}

/* --- MOBILE POISH V4 (Slightly larger FAQ & Logo) --- */
@media screen and (max-width: 768px) {
  /* RELAX NAVBAR CONSTRICTIONS */
  .navbar {
    padding: 0 0.8rem !important; /* increased from 0.5rem */
  }

  .logo {
    font-size: 1.1rem !important; /* Increased from 0.9rem */
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5); /* visibility */
  }

  .logo-icon {
    height: 28px !important; /* Increased from 20px */
  }

  /* Keep store buttons small to fit */
  .store-badge-img-nav {
    height: 22px !important;
  }

  /* FAQ - slightly larger than before */
  .faq-container details {
    margin-bottom: 0.8rem !important; /* loosening spacing */
  }

  .faq-container details summary {
    padding: 0.8rem 1rem !important; /* increased padding */
    font-size: 1.1rem !important;
    line-height: 1.4 !important; /* better readability */
  }

  .faq-container details p {
    padding: 0 1rem 1rem 1rem !important; /* increased padding */
    font-size: 1rem !important; /* larger text */
  }
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.social-icon {
  width: 32px;
  height: 32px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  opacity: 0.8;
}
.social-icon:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* Mockup Fix V3 */
.mockup-card {
  height: 555px !important;
  box-sizing: border-box !important;
}
.mockup-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 8% !important;
}
