/* Font Face */
@font-face {
  font-family: "FjallaOne";
  src: url("/fonts/FjallaOne-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* CSS Variables */
:root {
  --background: #121212;
  --foreground: #ffffff;
  --main-color: #02a7c4;
  --secondary-color: #9b59b6;
  --premium-color: #96275b;
  --ultimate-color: #d19e5a;
  --unreal-color: #9b59b6;
  --border-color: rgba(255, 255, 255, 0.15);
}

html {
  scroll-behavior: smooth;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "FjallaOne", sans-serif !important;
}

/* === FIX: Allow Font Awesome icons to use their own font === */
i.fas,
i.fa-solid {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

i.far,
i.fa-regular {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}

i.fab,
i.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

body {
  font-family: "FjallaOne", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-full {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  /* tenhle padding už neovlivní full-bleed níž, protože je mimo */
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 83.333%;
  max-width: 1280px;
  transition: all 0.3s ease;
  text-decoration: none;
  /* Removed flex properties that were incorrectly added here */
}

.navbar.scrolled {
  max-width: 1024px;
}

.navbar-container {
  /* Liquid glass background with gradient overlay */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );

  /* Stronger blur for that frosted glass effect */
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);

  /* Subtle border with gradient glow */
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  height: 64px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  /* Enhanced glass depth with multiple shadow layers */
  /* Outer glow */
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 4px 16px rgba(0, 0, 0, 0.25),
    /* Top highlight (light reflection) */
    inset 0 2px 2px rgba(255, 255, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    /* Bottom shadow (depth) */
    inset 0 -2px 2px rgba(0, 0, 0, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    /* Subtle side highlights for 3D effect */
    inset 2px 0 1px rgba(255, 255, 255, 0.15),
    inset -2px 0 1px rgba(255, 255, 255, 0.15);

  transition: all .3s ease;

  /* Subtle animation for liquid feel */
  position: relative;
  overflow: visible;
}

.navbar.scrolled .navbar-container {
  /* Enhanced glass effect when scrolled */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.23) 100%
  );
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);

  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.4),
    0 3px 14px rgba(0, 0, 0, 0.3),
    inset 0 2px 2px rgba(255, 255, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -2px 2px rgba(0, 0, 0, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    inset 2px 0 1px rgba(255, 255, 255, 0.2),
    inset -2px 0 1px rgba(255, 255, 255, 0.2);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity .2s ease;
  position: relative;
  z-index: 1;
}

.navbar-logo:hover {
  opacity: 0.8;
}

.navbar-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.navbar-link:hover {
  color: #02a7c4;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.logo-img {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-text {
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: .3px;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.navbar-icon {
  background: none;
  border: none;
  color: var(--main-color);
  opacity: 0.85;
  cursor: pointer;
  padding: .5rem;
  transition: all .2s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.navbar-icon:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(2, 167, 196, 0.4));
}

.icon-large {
  width: 24px;
  height: 24px;
}

/* Pill Button */
.pill-button {
  border-radius: 9999px;
  height: 42px;
  padding: 0 20px;
  /* Liquid glass background with color tint */
  background: linear-gradient(
    135deg,
    rgba(2, 167, 196, 0.85) 0%,
    rgba(2, 167, 196, 0.75) 50%,
    rgba(2, 167, 196, 0.8) 100%
  );

  /* Frosted glass blur */
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);

  /* Glass border */
  border: 1px solid rgba(255, 255, 255, 0.3);

  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all .3s ease;

  /* Enhanced glass depth with multiple shadow layers */
  /* Outer glow */
  box-shadow:
    0 4px 16px rgba(2, 167, 196, 0.4),
    0 2px 8px rgba(2, 167, 196, 0.3),
    /* Top highlight (light reflection) */
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.6),
    /* Bottom shadow (depth) */
    inset 0 -1px 1px rgba(0, 0, 0, 0.2),
    /* Side highlights for 3D effect */
    inset 1px 0 0.5px rgba(255, 255, 255, 0.2),
    inset -1px 0 0.5px rgba(255, 255, 255, 0.2);

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.pill-button:hover {
  transform: scale(1.03);
  /* Enhanced glass effect on hover */
  background: linear-gradient(
    135deg,
    rgba(2, 167, 196, 0.9) 0%,
    rgba(2, 167, 196, 0.8) 50%,
    rgba(2, 167, 196, 0.85) 100%
  );
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);

  box-shadow:
    0 0 24px rgba(2, 167, 196, 0.6),
    0 4px 20px rgba(2, 167, 196, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 1px rgba(0, 0, 0, 0.25),
    inset 1px 0 0.5px rgba(255, 255, 255, 0.25),
    inset -1px 0 0.5px rgba(255, 255, 255, 0.25);
}

.pill-button:active {
  transform: scale(1.0);
}

/* Dashboard button color variants (inherit glass style) */
.pill-button.version-free {
  background: linear-gradient(
    135deg,
    rgba(2, 167, 196, 0.85) 0%,
    rgba(2, 167, 196, 0.75) 50%,
    rgba(2, 167, 196, 0.8) 100%
  );
  box-shadow: 0 4px 16px rgba(2, 167, 196, 0.4), 0 2px 8px rgba(2, 167, 196, 0.3);
}

.pill-button.version-standard {
  background: linear-gradient(
    135deg,
    rgba(2, 167, 196, 0.85) 0%,
    rgba(2, 167, 196, 0.75) 50%,
    rgba(2, 167, 196, 0.8) 100%
  );
  box-shadow: 0 4px 16px rgba(2, 167, 196, 0.4), 0 2px 8px rgba(2, 167, 196, 0.3);
}

.pill-button.version-premium {
  background: linear-gradient(
    135deg,
    rgba(150, 39, 91, 0.85) 0%,
    rgba(150, 39, 91, 0.75) 50%,
    rgba(150, 39, 91, 0.8) 100%
  );
  box-shadow: 0 4px 16px rgba(150, 39, 91, 0.4), 0 2px 8px rgba(150, 39, 91, 0.3);
}

.pill-button.version-ultimate {
  background: linear-gradient(
    135deg,
    rgba(209, 158, 90, 0.85) 0%,
    rgba(209, 158, 90, 0.75) 50%,
    rgba(209, 158, 90, 0.8) 100%
  );
  box-shadow: 0 4px 16px rgba(209, 158, 90, 0.4), 0 2px 8px rgba(209, 158, 90, 0.3);
}

.pill-button.version-unreal {
  background: linear-gradient(
    135deg,
    rgba(155, 89, 182, 0.85) 0%,
    rgba(155, 89, 182, 0.75) 50%,
    rgba(155, 89, 182, 0.8) 100%
  );
  box-shadow: 0 4px 16px rgba(155, 89, 182, 0.4), 0 2px 8px rgba(155, 89, 182, 0.3);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 1rem 2rem;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-text {
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.title-line-1 {
  color: #fff;
}

.title-line-2 {
  color: var(--main-color);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--secondary-color);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .05em;
  max-width: 56rem;
  margin: 0 auto;
}

.cta-button {
  font-size: 1.125rem;
  padding: 0 2rem;
  height: 3rem;
  margin-bottom: .6rem;
  transition: all .3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  /* Updated hover effect to match new glass style */
  box-shadow:
    0 0 28px rgba(2, 167, 196, 0.7),
    0 6px 24px rgba(2, 167, 196, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 1px rgba(0, 0, 0, 0.25),
    inset 1px 0 0.5px rgba(255, 255, 255, 0.25),
    inset -1px 0 0.5px rgba(255, 255, 255, 0.25);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta-button {
  /* Force CTA to be its own row (so social proof cannot sit next to it) */
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.hero-social-proof {
  /* Keep centered but ensure it is on its own line under CTA */
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 2.4rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.hero-social-proof__stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(2, 167, 196, 0.95);
  filter: drop-shadow(0 0 12px rgba(2, 167, 196, 0.25));
}

.hero-social-proof__stars i {
  font-size: 14px;
  line-height: 1;
}

.hero-social-proof__text {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.cta-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cta-button:hover .cta-icon {
  transform: translate(3px, -3px) scale(1.1);
  opacity: 0.9;
}

.hero-showcase-wrapper {
  position: relative;
  width: 50vw;
  padding: 0;
  perspective: 1500px;
}

.hero-showcase {
  position: relative;
  transition: transform .3s ease-out;
  transform-style: preserve-3d;
}

.gradient-border {
  position: relative;
  padding: 1px;
  border-radius: 25px;
  background: linear-gradient(135deg, #9b59b6 0%, #02a7c4 100%);
  display: flex;
  justify-content: center;
}

.showcase-content {
  background: #484848;
  border-radius: 24px;
  aspect-ratio: 1465 / 733;
  width: 100%;
  max-width: 1800px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.15), -8px -8px 24px rgba(2, 167, 196, 0.4), -4px -4px 12px rgba(2, 167, 196, 0.25), 8px 8px 24px rgba(
      155,
      89,
      182,
      0.4
    ), 4px 4px 12px rgba(155, 89, 182, 0.25);
}

.placeholder-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  font-weight: bold;
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: .02em;
}

.text-white {
  color: #fff;
}

.text-primary {
  color: var(--main-color);
}

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

.underline-glow,
.underline-glow-purple {
  position: relative;
  display: inline-block;
}

.underline-glow::after {
  content: "";
  position: absolute;
  bottom: -.5rem;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 9999px;
  background: linear-gradient(90deg, transparent, rgba(2, 167, 196, 0.6), transparent);
  box-shadow: 0 0 10px rgba(2, 167, 196, 0.4);
}

.underline-glow-purple::after {
  content: "";
  position: absolute;
  bottom: -.5rem;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 9999px;
  background: linear-gradient(90deg, transparent, rgba(155, 89, 182, 0.6), transparent);
  box-shadow: 0 0 10px rgba(155, 89, 182, 0.4);
}

/* Features */
.features-section {
  padding: 5rem 1rem;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

.engine-tabs {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(22, 22, 28, 0.62) 0%,
    rgba(12, 12, 16, 0.52) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.engine-tabs__tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 14px 0;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
}

.engine-tabs__tabs::-webkit-scrollbar {
  height: 6px;
}

.engine-tabs__tabs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
}

.engine-tabs__tab {
  flex: 0 0 auto;
  padding: 12px 14px;
  border-radius: 14px 14px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.10) 0%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.09) 100%
  );
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.engine-tabs__tab:hover {
  transform: translateY(-1px);
  border-color: rgba(2, 167, 196, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25), 0 0 24px rgba(2, 167, 196, 0.12);
}

.engine-tabs__tab:focus-visible {
  outline: 2px solid rgba(2, 167, 196, 0.65);
  outline-offset: 3px;
}

.engine-tabs__tab.is-active {
  border-color: rgba(2, 167, 196, 0.55);
  color: #fff;
  transform: translateY(1px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.28),
    0 0 30px rgba(2, 167, 196, 0.20),
    inset 0 1px 1px rgba(255, 255, 255, 0.35);
}

.engine-tabs__panels {
  width: 100%;
  padding: 18px;
}

.engine-tabs__panel {
  display: none;
}

.engine-tabs__panel.is-active {
  display: block;
}

.engine-tabs__panel-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.feature-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.feature-row.reverse {
  flex-direction: column;
}

.feature-screenshot {
  width: 100%;
}

.screenshot-frame {
  position: relative;
  border-radius: 20px;
  background: #2a2a2a;
  padding: 1px;
}

.screenshot-frame.glow-cyan {
  box-shadow: 0 0 30px rgba(2, 167, 196, 0.25), 0 0 60px rgba(2, 167, 196, 0.125), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.screenshot-frame.glow-purple {
  box-shadow: 0 0 30px rgba(155, 89, 182, 0.25), 0 0 60px rgba(155, 89, 182, 0.125), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.screenshot-frame.glow-gold {
  box-shadow: 0 0 30px rgba(209, 158, 90, 0.25), 0 0 60px rgba(209, 158, 90, 0.125), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.screenshot-frame.glow-pink {
  box-shadow: 0 0 30px rgba(150, 39, 91, 0.25), 0 0 60px rgba(150, 39, 91, 0.125), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.window-header {
  background: #1a1a1a;
  border-radius: 18px 18px 0 0;
  padding: .5rem 1rem;
  display: flex;
  align-items: center;
}

.window-buttons {
  display: flex;
  gap: 6px;
}

.window-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.window-btn.red {
  background: #ff5f56;
}

.window-btn.yellow {
  background: #ffbd2e;
}

.window-btn.green {
  background: #27c93f;
}

.screenshot-content {
  background: #484848;
  border-radius: 0 0 18px 18px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshot-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .1em;
}

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

.feature-title {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: .75rem;
  letter-spacing: .02em;
}

.feature-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Video Showcase */
.video-showcase {
  margin-top: 5rem;
}

.video-frame {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  background: #484848;
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.38)) drop-shadow(0 0 64px rgba(255, 255, 255, 0.2));
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 24px;
}

.video-frame .yt-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-frame .yt-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 24px;
}

.video-controls {
  position: absolute;
  left: 16px;
  right: auto;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.video-control-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.video-control-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.play-button {
  width: 104px;
  height: 72px;
  /* Liquid glass background with red tint */
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.85) 0%,
    rgba(220, 38, 38, 0.75) 50%,
    rgba(220, 38, 38, 0.8) 100%
  );

  /* Frosted glass blur */
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);

  /* Glass border */
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  cursor: pointer;
  transition: all .3s ease;

  /* Enhanced glass depth */
  box-shadow:
    0 4px 16px rgba(220, 38, 38, 0.4),
    0 2px 8px rgba(220, 38, 38, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 1px rgba(0, 0, 0, 0.2),
    inset 1px 0 0.5px rgba(255, 255, 255, 0.2),
    inset -1px 0 0.5px rgba(255, 255, 255, 0.2);

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.play-button:hover {
  background: linear-gradient(
    135deg,
    rgba(185, 28, 28, 0.9) 0%,
    rgba(185, 28, 28, 0.8) 50%,
    rgba(185, 28, 28, 0.85) 100%
  );
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);

  transform: scale(1.05);
  box-shadow:
    0 0 24px rgba(220, 38, 38, 0.6),
    0 4px 24px rgba(220, 38, 38, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 1px rgba(0, 0, 0, 0.25),
    inset 1px 0 0.5px rgba(255, 255, 255, 0.25),
    inset -1px 0 0.5px rgba(255, 255, 255, 0.25);
}

.play-icon {
  width: 0;
  height: 0;
  border-left: 16px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
  /* Added z-index to keep icon above shimmer effect */
  position: relative;
  z-index: 1;
}

/* Pricing */
.pricing-section {
  padding: 5rem 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.pricing-card {
  position: relative;
  cursor: pointer;
  transition: all .3s ease;
}

.pricing-card[data-color="#96275b"] {
  --tier-color: #96275b;
  --tier-color-rgb: 150, 39, 91;
}

.pricing-card[data-color="#d19e5a"] {
  --tier-color: #d19e5a;
  --tier-color-rgb: 209, 158, 90;
}

.pricing-card[data-color="#9b59b6"] {
  --tier-color: #9b59b6;
  --tier-color-rgb: 155, 89, 182;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card.featured {
  transform: scale(1);
}

.plan-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  padding: .5rem 1rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pricing-card[data-color="#96275b"] .plan-badge {
  color: #96275b;
}

.pricing-card[data-color="#d19e5a"] .plan-badge {
  color: #d19e5a;
}

.pricing-card[data-color="#9b59b6"] .plan-badge {
  color: #9b59b6;
}

.pricing-card-inner {
  position: relative;
  border-radius: 24px;
  min-height: 540px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(22, 22, 28, 0.62) 0%,
    rgba(12, 12, 16, 0.52) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  transition: all .3s ease;
}

.pricing-card:hover .pricing-card-inner {
  backdrop-filter: blur(24px);
}

.pricing-card[data-color="#96275b"] .pricing-card-inner {
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), inset 0 -1px 1px rgba(0, 0, 0, 0.2), 0 0 20px
    rgba(150, 39, 91, 0.5), 0 0 50px rgba(150, 39, 91, 0.3);
}

.pricing-card[data-color="#d19e5a"] .pricing-card-inner {
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), inset 0 -1px 1px rgba(0, 0, 0, 0.2), 0 0 20px
    rgba(209, 158, 90, 0.5), 0 0 50px rgba(209, 158, 90, 0.3);
}

.pricing-card[data-color="#9b59b6"] .pricing-card-inner {
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), inset 0 -1px 1px rgba(0, 0, 0, 0.2), 0 0 20px
    rgba(155, 89, 182, 0.5), 0 0 50px rgba(155, 89, 182, 0.3);
}

.pricing-header {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
  padding: .75rem 0 1.25rem;
}

.plan-subtitle {
  margin-top: .35rem;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  z-index: 1;
}

.pricing-header::before {
  content: "";
  position: absolute;
  inset: -1.25rem -1.5rem 0 -1.5rem;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(var(--tier-color-rgb), 0.42) 0%,
    rgba(var(--tier-color-rgb), 0.18) 34%,
    rgba(var(--tier-color-rgb), 0) 70%
  );
  filter: blur(2px);
  opacity: .9;
  pointer-events: none;
}

.pricing-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(260px, 70%);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(var(--tier-color-rgb), 0) 0%,
    rgba(var(--tier-color-rgb), 0.65) 50%,
    rgba(var(--tier-color-rgb), 0) 100%
  );
  opacity: .9;
  pointer-events: none;
}

.plan-name {
  font-size: 1.875rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: .1em;
  position: relative;
  z-index: 1;
}

.features-list {
  list-style: none;
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-section .features-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}

.pricing-section .feature-item {
  width: min(420px, 100%);
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  column-gap: .75rem;
}

.check-icon,
.feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.feature-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  color: rgba(var(--tier-color-rgb), 0.9);
  filter: drop-shadow(0 0 10px rgba(var(--tier-color-rgb), 0.25));
}

.pricing-card[data-color="#96275b"] .check-icon {
  color: rgba(150, 39, 91, 0.85);
}

.pricing-card[data-color="#d19e5a"] .check-icon {
  color: rgba(209, 158, 90, 0.85);
}

.pricing-card[data-color="#9b59b6"] .check-icon {
  color: rgba(155, 89, 182, 0.85);
}

.feature-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: .875rem;
  line-height: 1.6;
}

.pricing-section .feature-text {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem;
  justify-self: start;
}

.pricing-section .feature-text--nowrap {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.inline-tier-logos {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-left: .25rem;
}

.inline-tier-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: .9;
  filter: drop-shadow(0 0 10px rgba(var(--tier-color-rgb), 0.12));
}

.pricing-watermark {
  position: absolute;
  right: .75rem;
  bottom: 2.75rem;
  width: min(240px, 54%);
  height: auto;
  opacity: .14;
  transform: rotate(-14deg);
  pointer-events: none;
  z-index: 0;
  user-select: none;
  -webkit-user-drag: none;
  filter: saturate(110%) brightness(1.05) contrast(1.05) blur(.2px);
  -webkit-mask-image: radial-gradient(
    circle at 72% 68%,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.85) 48%,
    rgba(0, 0, 0, 0) 76%
  );
  mask-image: radial-gradient(
    circle at 72% 68%,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.85) 48%,
    rgba(0, 0, 0, 0) 76%
  );
}

.features-list,
.pricing-footer {
  position: relative;
  z-index: 1;
}

.pricing-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lifetime-badge {
  padding: .25rem .75rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

.pricing-button {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 9999px;
  color: #fff;
  /* Added glass border for all pricing buttons */
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all .3s ease;
  /* Added glass effects and shimmer overlay */
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
}

.pricing-button[data-color="#96275b"] {
  /* Added liquid glass gradient for premium button */
  background: linear-gradient(
    135deg,
    rgba(150, 39, 91, 0.85) 0%,
    rgba(150, 39, 91, 0.75) 50%,
    rgba(150, 39, 91, 0.8) 100%
  );
  box-shadow:
    0 0 22px rgba(150, 39, 91, 0.35),
    0 4px 20px rgba(150, 39, 91, 0.4),
    0 2px 10px rgba(150, 39, 91, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 1px rgba(0, 0, 0, 0.2),
    inset 1px 0 0.5px rgba(255, 255, 255, 0.2),
    inset -1px 0 0.5px rgba(255, 255, 255, 0.2);
}

.pricing-button[data-color="#d19e5a"] {
  /* Added liquid glass gradient for ultimate button */
  background: linear-gradient(
    135deg,
    rgba(209, 158, 90, 0.85) 0%,
    rgba(209, 158, 90, 0.75) 50%,
    rgba(209, 158, 90, 0.8) 100%
  );
  box-shadow:
    0 0 22px rgba(209, 158, 90, 0.35),
    0 4px 20px rgba(209, 158, 90, 0.4),
    0 2px 10px rgba(209, 158, 90, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 1px rgba(0, 0, 0, 0.2),
    inset 1px 0 0.5px rgba(255, 255, 255, 0.2),
    inset -1px 0 0.5px rgba(255, 255, 255, 0.2);
}

.pricing-button[data-color="#9b59b6"] {
  /* Added liquid glass gradient for unreal button */
  background: linear-gradient(
    135deg,
    rgba(155, 89, 182, 0.85) 0%,
    rgba(155, 89, 182, 0.75) 50%,
    rgba(155, 89, 182, 0.8) 100%
  );
  box-shadow:
    0 0 22px rgba(155, 89, 182, 0.35),
    0 4px 20px rgba(155, 89, 182, 0.4),
    0 2px 10px rgba(155, 89, 182, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 1px rgba(0, 0, 0, 0.2),
    inset 1px 0 0.5px rgba(255, 255, 255, 0.2),
    inset -1px 0 0.5px rgba(255, 255, 255, 0.2);
}

.pricing-button:hover {
  transform: scale(1.05);
}

/* Enhanced hover states for each pricing button color */
.pricing-button[data-color="#96275b"]:hover {
  background: linear-gradient(
    135deg,
    rgba(150, 39, 91, 0.9) 0%,
    rgba(150, 39, 91, 0.8) 50%,
    rgba(150, 39, 91, 0.85) 100%
  );
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  box-shadow:
    0 0 24px rgba(150, 39, 91, 0.6),
    0 4px 24px rgba(150, 39, 91, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 1px rgba(0, 0, 0, 0.25),
    inset 1px 0 0.5px rgba(255, 255, 255, 0.25),
    inset -1px 0 0.5px rgba(255, 255, 255, 0.25);
}

.pricing-button[data-color="#d19e5a"]:hover {
  background: linear-gradient(
    135deg,
    rgba(209, 158, 90, 0.9) 0%,
    rgba(209, 158, 90, 0.8) 50%,
    rgba(209, 158, 90, 0.85) 100%
  );
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  box-shadow:
    0 0 24px rgba(209, 158, 90, 0.6),
    0 4px 24px rgba(209, 158, 90, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 1px rgba(0, 0, 0, 0.25),
    inset 1px 0 0.5px rgba(255, 255, 255, 0.25),
    inset -1px 0 0.5px rgba(255, 255, 255, 0.25);
}

.pricing-button[data-color="#9b59b6"]:hover {
  background: linear-gradient(
    135deg,
    rgba(155, 89, 182, 0.9) 0%,
    rgba(155, 89, 182, 0.8) 50%,
    rgba(155, 89, 182, 0.85) 100%
  );
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  box-shadow:
    0 0 24px rgba(155, 89, 182, 0.6),
    0 4px 24px rgba(155, 89, 182, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 1px rgba(0, 0, 0, 0.25),
    inset 1px 0 0.5px rgba(255, 255, 255, 0.25),
    inset -1px 0 0.5px rgba(255, 255, 255, 0.25);
}

.pricing-button:active {
  transform: scale(1);
}

/* About Section (Reviews) */
.about-section {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.full-bleed {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
}

.reviews-outer {
  /* edge fade + ořez */
  position: relative;
  overflow: hidden;
  margin-top: 3.5rem;
}

.reviews-outer::before,
.reviews-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(32px, 6vw, 96px);
  pointer-events: none;
  z-index: 2;
}

.reviews-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--background), transparent);
}

.reviews-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--background), transparent);
}

.reviews-container {
  width: 100%;
}

.reviews-scroll {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollReviews 350s linear infinite;
}

.reviews-scroll::-webkit-scrollbar {
  display: none;
}

.reviews-scroll.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.reviews-scroll.paused {
  animation-play-state: paused;
}

.review-card {
  flex: 0 0 auto;
  width: 90vw;
  max-width: 800px;
  height: auto;
  min-height: 300px;
  border-radius: 24px;
  padding: 1.75rem;
  /* Liquid glass background with gradient overlay */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  /* Enhanced frosted glass blur effect */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  /* Added glass border with more opacity */
  border: 1px solid rgba(255, 255, 255, 0.25);
  user-select: none;
  scroll-snap-align: center;
  transition: all .3s ease;
  /* Added multi-layered shadows for glass depth and light reflections */
  /* Outer glow */
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.2),
    /* Top highlight (light reflection) */
    inset 0 2px 2px rgba(255, 255, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    /* Bottom shadow (depth) */
    inset 0 -2px 2px rgba(0, 0, 0, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25),
    /* Side highlights for 3D curved glass effect */
    inset 2px 0 1px rgba(255, 255, 255, 0.12),
    inset -2px 0 1px rgba(255, 255, 255, 0.12);
}

.review-card:hover {
  transform: none;
  /* Enhanced glass effect on hover */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.12) 100%
  );
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 6px 20px rgba(0, 0, 0, 0.25),
    inset 0 2px 2px rgba(255, 255, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -2px 2px rgba(0, 0, 0, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28),
    inset 2px 0 1px rgba(255, 255, 255, 0.15),
    inset -2px 0 1px rgba(255, 255, 255, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-author-info {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #02a7c4, #0891b2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.author-name {
  font-size: 1.375rem;
  color: #fff;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.star-rating {
  display: flex;
  gap: 4px;
}

.star {
  width: 16px;
  height: 16px;
  color: var(--main-color);
  opacity: 0.9;
}

.review-date {
  color: rgba(255, 255, 255, 0.65);
  font-size: .9375rem;
}

.review-content {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  line-height: 1.6;
}

/* ===================================
   Universal Review Pack Badge Styling
   =================================== */
.review-pack-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: #1e1e1e; /* elegantní šedé pozadí */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  user-select: none;
}

/* Gradient text pro jednotlivé packy */
.premium-badge {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(
    135deg,
    rgba(150, 39, 91, 0.85) 0%,
    rgba(150, 39, 91, 0.75) 50%,
    rgba(150, 39, 91, 0.8) 100%
  );
}

.ultimate-badge {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(
    135deg,
    rgba(209, 158, 90, 0.85) 0%,
    rgba(209, 158, 90, 0.75) 50%,
    rgba(209, 158, 90, 0.8) 100%
  );
}

.unreal-badge {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(
    135deg,
    rgba(155, 89, 182, 0.85) 0%,
    rgba(155, 89, 182, 0.75) 50%,
    rgba(155, 89, 182, 0.8) 100%
  );
}

/* ============================
   Navbar Cart Badge
   ============================ */
.cart-badge {
  background-color: #9b59b6 !important;
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--main-color);
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 6px rgba(2, 167, 196, 0.6);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.25s ease;
  pointer-events: none;
}

.cart-badge.show {
  opacity: 1;
  transform: scale(1);
}

/* Malá úprava struktury autora */
.author-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.quote-mark {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Footer */
.footer {
  background: #1a1a1a;
  padding: 3rem 1rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--foreground);
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color .2s ease;
}

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

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: rgba(255, 255, 255, 0.6);
  transition: color .2s ease;
}

.social-icon:hover {
  color: var(--main-color);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-img {
  width: 24px;
  height: 24px;
  filter: brightness(0.8);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.social-icon:hover .social-img {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: .875rem;
}

.hero-illustration {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ============================
   Language Switcher Dropdown
   ============================ */
.lang-switcher {
  position: relative;
  z-index: 2000; /* nad navbar-container */
}

.lang-switcher-trigger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  padding: .5rem;
  border-radius: 8px;
  transition: background .2s ease;
}

.lang-switcher-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-switcher-trigger .icon-large {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.current-lang {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: rgba(30, 30, 35, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 8px;
  list-style: none;
  z-index: 3000; /* vyšší než navbar */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 16px;
  text-align: left;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  transition: background .2s ease, color .2s ease;
}

.lang-option:hover {
  background: rgba(2, 167, 196, 0.2);
  color: #fff;
}

/* === FIX: clean screenshot frame but keep glow & header === */
.screenshot-frame {
  position: relative;
  border-radius: 20px;
  background: transparent !important;
  padding: 0 !important;
  overflow: hidden;
}

.screenshot-content {
  background: transparent !important;
  border-radius: 0 0 18px 18px;
  aspect-ratio: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshot-content img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0 0 18px 18px;
  display: block;
}

/* keep the glow variants */
.screenshot-frame.glow-cyan,
.screenshot-frame.glow-purple,
.screenshot-frame.glow-gold,
.screenshot-frame.glow-pink {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4),
              0 0 60px rgba(255, 255, 255, 0.05),
              inset 0 0 0 transparent;
}

/* window header and buttons */
.window-header {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 18px 18px 0 0;
  padding: .5rem 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.window-buttons {
  display: flex;
  gap: 6px;
}

.window-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.window-btn.red { background: #ff5f56; }
.window-btn.yellow { background: #ffbd2e; }
.window-btn.green { background: #27c93f; }

.first-feature {
  width: 60%;
  margin: 0 auto;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 4rem;
  }

  .feature-row {
    flex-direction: row;
  }

  .feature-row.reverse {
    flex-direction: row-reverse;
  }

  .feature-screenshot,
  .feature-text {
    width: 50%;
  }

  .feature-text {
    text-align: left;
  }

  .feature-row.reverse .feature-text {
    text-align: right;
  }

  .engine-tabs__panel-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
  }

  .engine-tabs__panel-inner .feature-text {
    width: auto;
    text-align: left;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-card.featured {
    transform: scale(1.05);
  }

  .review-card {
    width: 640px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .navbar-actions {
    gap: .5rem;
  }

  .icon-large {
    width: 16px;
    height: 16px;
  }

  .hero-showcase-wrapper {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .logo-text {
    display: none;
  }

  .logo-img {
    width: 32px;
    height: 32px;
  }
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes scrollReviews {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================
   Hamburger Menu Styles
   ============================ */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* ============================
   Mobile Menu Overlay
   ============================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: right 0.3s ease;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 6rem 2rem 2rem;
}

.mobile-menu-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-link:hover {
  background: rgba(2, 167, 196, 0.2);
  color: #02a7c4;
}

.mobile-menu-button {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}
