  /* Minimal, szybki CSS z efektem "liquid glass" */
/* Preferuj systemowe fonty dla wydajności - optymalizacja dla szybkości i spójności */
:root {
  --bg: #f6fbff;
  --fg: #0a1216;
  --muted: #4f6b7a;
  --mint: #22e0aa;
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-stroke: rgba(8, 17, 24, 0.08);
  --maxw: 1184px;
  --accent-yellow: #ffbf2a;
  --accent-pink: #ff5fa2;
  --accent-blue: #5fd3ff;
  
  /* Ujednolicone fonty - systemowe dla szybkości, Roboto jako fallback */
  --font-base: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  --font-decorative: 'Monoton', 'Neonderthaw', cursive;
  --font-sans: 'Roboto', ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  height: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  /* Safe area dla urządzeń z wycięciem (np. iPhone) */
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  font-family: var(--font-base);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: radial-gradient(1600px 900px at 85% -10%, rgba(95, 211, 255, 0.35), transparent),
              radial-gradient(1200px 700px at 0% 100%, rgba(255, 191, 42, 0.30), transparent),
              radial-gradient(1200px 700px at 20% 0%, rgba(255, 95, 162, 0.22), transparent),
              linear-gradient(#ffffff, #f7fbff);
  background-attachment: fixed, fixed, fixed, fixed;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: cover, cover, cover, cover;
}

/* Responsywne media – nie wychodzą poza ekran na mobile */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
iframe {
  max-width: 100%;
}

/* Zapobieganie przepełnieniu tekstu na małych ekranach */
p, h1, h2, h3, .section-head, .hero-content, .neon-title, .content {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* Na bardzo małych ekranach – większy padding i wygodniejsze dotykanie */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .btn {
    min-height: 44px;
    padding: 12px 20px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.08);
    touch-action: manipulation;
  }
  .section {
    padding-left: 0;
    padding-right: 0;
  }
  /* Pola formularzy – min. 16px zapobiega automatycznemu zoomowi w iOS */
  input, textarea, select {
    font-size: max(16px, 1em);
  }
}

/* Tabele – na mobile można owinąć w .table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; } */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1em 0;
}

.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-stroke);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
}

/* Fioletowe zabarwienie dla liquid glass podczas bycia zalogowanym */
body:has(.admin-header) .glass {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%), 
              rgba(255, 255, 255, 0.65);
  border-color: rgba(102, 126, 234, 0.2);
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2), inset 0 1px 0 rgba(255,255,255,.06);
}

body:has(.admin-header) .glass:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%), 
              rgba(255, 255, 255, 0.7);
  border-color: rgba(102, 126, 234, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--fg);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  position: relative; overflow: hidden;
}
.btn.primary { background: linear-gradient(180deg, #ff7f73, #ff5e51); color: #fff; border-color: #ff5e51; box-shadow: 0 8px 20px rgba(255,94,81,.25); }
.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(255,94,81,.35); }
.btn.primary:active { transform: translateY(0); box-shadow: 0 6px 16px rgba(255,94,81,.28); }
.btn.ghost { background: transparent; border-color: #ff5e51; color: #ff5e51; }
.btn.ghost:hover { background: #ff5e51; color: #fff; }
.btn.small { padding: 8px 14px; font-size: 11px; letter-spacing: .05em; }
.btn.small:disabled { opacity: 0.5; cursor: not-allowed; }
.btn .arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* Delikatny połysk na przyciskach */
.btn::before { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,0) 60%); opacity:.35; pointer-events:none; mix-blend-mode: screen; }
.btn:hover::after { content:""; position:absolute; top:0; left:-120%; width:45%; height:100%; background: linear-gradient(110deg, rgba(255,255,255,0), rgba(255,255,255,.55), rgba(255,255,255,0)); transform: skewX(-20deg); animation: sheen .7s ease forwards; pointer-events:none; }
@keyframes sheen { to { left:120%; } }

.site-header {
  position: sticky;
  top: 0; z-index: 50; /* Niższy niż sidebar - sidebar jest nad headerem */
  margin: 16px auto; padding: 4px 0;
  padding-top: max(4px, env(safe-area-inset-top, 0));
  background: linear-gradient(90deg, rgba(34,224,170,.15), rgba(95,211,255,.15), rgba(255,191,42,.15)), var(--glass-bg);
  border: 1px solid var(--glass-stroke);
  border-radius: 0;
  /* USUNIĘTO isolation: isolate - powodowało problemy z z-index sidebara */
}

/* Fioletowe zabarwienie dla nagłówka podczas bycia zalogowanym */
.admin-header-override.site-header {
  background: linear-gradient(90deg, rgba(102, 126, 234, 0.25), rgba(118, 75, 162, 0.25), rgba(102, 126, 234, 0.15)), 
              linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%), 
              var(--glass-bg);
  border-color: rgba(102, 126, 234, 0.2);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 4px 14px; flex-wrap: wrap; }
.nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
/* Nadpisz dla #main-nav na mobile - zapobiega konfliktom */
@media (max-width: 799px) {
  #main-nav.nav {
    flex-wrap: nowrap !important; /* KRYTYCZNE - nie zawijaj linków */
    flex-direction: column !important; /* KRYTYCZNE - linki pionowo */
  }
}

/* Na mobile - ukryj menu w nagłówku */
@media (max-width: 799px) {
  /* Ukryj WSZYSTKIE menu w nagłówku - również #main-nav */
  .header-inner .nav:not(#main-nav),
  .header-inner nav:not(#main-nav) {
    display: none !important;
  }
}
/* Hamburger menu toggle - UPROSZCZONE */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 799px) {
  .header-inner { 
    padding: 4px 10px; 
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .logo { 
    height: 56px; 
    flex-shrink: 0;
  }
  
  /* ============================================
     MOBILE MENU - UPROSZCZONE I NIEZAWODNE
     ============================================ */
  
  /* Przycisk hamburgera – część belki górnej (w flow headera, po prawej przy logo) */
  .mobile-menu-toggle {
    display: flex !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 10000 !important; /* nad overlay/sidebarem, żeby zawsze dało się zamknąć menu */
    margin-left: auto !important;
    background: transparent !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.5) !important;
  }
  .mobile-menu-toggle span {
    background: var(--fg) !important;
  }
  
  /* Overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  /* Ukryj linki specjalne dla niezalogowanych */
  #main-nav a.nav-role-link:not(.nav-role-visible) {
    display: none !important;
  }

  /* Ukryj social media dla zalogowanych */
  body.user-logged-in #main-nav a.social-btn {
    display: none !important;
  }

  /* SIDEBAR - UPROSZCZONE STYLE */
  #main-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important; /* KRYTYCZNE: Rozciągnij do dołu ekranu */
    width: 280px !important;
    max-width: 80vw !important;
    /* KRYTYCZNE: Pełna wysokość ekranu na Androidzie */
    height: 100% !important;
    height: 100vh !important;
    height: 100dvh !important; /* Dynamic Viewport Height - Android Chrome fix */
    height: -webkit-fill-available !important; /* iOS Safari fix */
    min-height: 100% !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    min-height: -webkit-fill-available !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 80px 24px 32px !important;
    gap: 8px !important;
    z-index: 9999 !important; /* Wysoki, ale niższy niż przycisk (10000) */
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: flex !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease !important;
    /* KRYTYCZNE: Wymuś nowy stacking context */
    isolation: isolate !important;
  }
  
  /* SIDEBAR OTWARTY */
  #main-nav.mobile-open {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
  }
  
  /* Linki w sidebarze - klikalne */
  #main-nav.mobile-open a {
    pointer-events: auto !important;
    cursor: pointer !important;
  }
  
  
  /* Przywrócono oryginalne style linków z backupu */
  #main-nav a {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    border-radius: 12px;
    display: block !important;
    visibility: visible !important;
    opacity: 0 !important;
    transform: translateX(-20px) !important;
    pointer-events: auto !important;
    text-decoration: none !important;
    color: var(--fg) !important;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }
  
  /* Animacja pojawiania się linków z opóźnieniem (staggered) - styl iOS */
  #main-nav.mobile-open a {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
  
  #main-nav.mobile-open a:nth-child(1) {
    transition-delay: 0.1s !important;
  }
  
  #main-nav.mobile-open a:nth-child(2) {
    transition-delay: 0.15s !important;
  }
  
  #main-nav.mobile-open a:nth-child(3) {
    transition-delay: 0.2s !important;
  }
  
  #main-nav.mobile-open a:nth-child(4) {
    transition-delay: 0.25s !important;
  }
  
  #main-nav.mobile-open a:nth-child(5) {
    transition-delay: 0.3s !important;
  }
  
  #main-nav.mobile-open a:nth-child(6) {
    transition-delay: 0.35s !important;
  }
  
  #main-nav.mobile-open a:nth-child(7) {
    transition-delay: 0.4s !important;
  }
  
  #main-nav.mobile-open a:nth-child(8) {
    transition-delay: 0.45s !important;
  }
  
  /* Efekt hover/tap dla linków - styl iOS */
  #main-nav a:active {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(0.98) translateX(0) !important;
  }
  
  /* Przywrócono oryginalne style z backupu */
  #main-nav a:not(.social-btn) {
    width: auto;
    min-width: 0;
  }
  
  /* Kontener dla przycisków social media - styl iOS */
  #main-nav a.social-btn {
    width: 48px !important;
    height: 48px !important;
    margin: 20px auto 0 auto !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,255,255,0.25) !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
    opacity: 0 !important;
    transform: translateY(10px) scale(0.9) !important;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1) !important;
    border-radius: 50% !important;
  }
  /* Zaloguj – ten sam kształt i rozmiar co Kontakt (wymiary z .btn) */
  #main-nav a.btn.auth-btn {
    background: rgba(255,255,255,0.25) !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25) !important;
  }
  
  #main-nav.mobile-open a.social-btn {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
  }
  
  #main-nav.mobile-open a.social-btn:first-of-type {
    transition-delay: 0.5s !important;
  }
  
  #main-nav.mobile-open a.social-btn:nth-of-type(2) {
    transition-delay: 0.55s !important;
  }
  
  #main-nav a.social-btn:active {
    transform: scale(0.9) translateY(0) !important;
    background: rgba(255,255,255,0.35) !important;
  }
  
  #main-nav a.social-btn svg {
    width: 26px !important;
    height: 26px !important;
    fill: var(--fg) !important;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3)) !important;
  }
  
  /* ============================================
     PRZYCISK ZAMKNIĘCIA WEWNĄTRZ SIDEBARA
     ============================================ */
  .sidebar-close-btn {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: rgba(0, 0, 0, 0.05) !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
  }
  
  .sidebar-close-btn:hover,
  .sidebar-close-btn:active {
    background: rgba(0, 0, 0, 0.1) !important;
    transform: scale(1.1) !important;
  }
  
  .sidebar-close-btn svg {
    width: 24px !important;
    height: 24px !important;
    stroke: var(--fg, #333) !important;
    stroke-width: 2 !important;
  }
  
  /* Grupa przycisków social media - wyśrodkowanie obu przycisków */
  #main-nav a.social-btn {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  #main-nav a.social-btn + a.social-btn {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 12px !important;
  }
  
  /* Kontener dla grupy social buttons - wyśrodkowanie całej grupy */
  #main-nav a.social-btn:first-of-type {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* Wrapper dla social buttons - wyśrodkowanie */
  #main-nav::after {
    content: '';
    display: block;
    width: 100%;
    margin-top: 8px;
  }
  
}

@media (max-width: 480px) {
  .logo { height: 48px; }
  #main-nav {
    width: 100% !important;
    top: 0 !important;
    bottom: 0 !important;
    transform: translateX(100%) !important;
    /* KRYTYCZNE: Pełna wysokość ekranu na małych Androidach */
    height: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    height: -webkit-fill-available !important;
    min-height: 100% !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    min-height: -webkit-fill-available !important;
    padding: 70px 24px 32px !important;
  }
  #main-nav.mobile-open {
    transform: translateX(0) !important;
  }
  .mobile-menu-overlay {
    display: block !important;
  }
}

/* KRYTYCZNE: Na tabletach i większych ekranach - wyświetl menu w headerze jako poziome */
@media (min-width: 800px) {
  /* Ukryj przycisk hamburgera na tabletach */
  .mobile-menu-toggle {
    display: none !important;
    visibility: hidden !important;
  }
  
  /* Ukryj overlay na tabletach */
  .mobile-menu-overlay {
    display: none !important;
    visibility: hidden !important;
  }
  
  /* Ukryj przycisk zamknięcia na tabletach */
  .sidebar-close-btn {
    display: none !important;
  }
  
  /* Wyświetl menu w headerze jako poziome na tabletach */
  #main-nav {
    /* Resetuj inline style wysokości ustawione przez JS */
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    position: static !important; /* Nie fixed - w normalnym flow */
    display: flex !important;
    flex-direction: row !important; /* Poziome menu */
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 18px !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    overflow: visible !important;
    z-index: auto !important;
    /* Reset wszystkich właściwości mobile */
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
  }
  
  /* Ukryj sidebar gdy nie jest używany (na tabletach) */
  #main-nav.mobile-open {
    position: static !important;
    transform: none !important;
  }
  
  /* Upewnij się, że linki są wyświetlane poziomo */
  #main-nav a {
    display: inline-block !important;
    white-space: nowrap !important;
  }
  
  /* Ukryj przyciski social media w menu głównym na tabletach (są w footerze) */
  #main-nav a.social-btn {
    display: none !important;
  }
  
  /* Ukryj Panel i Mintax gdy użytkownik nie jest zalogowany (na desktopie) */
  #main-nav a.nav-role-link:not(.nav-role-visible) {
    display: none !important;
  }
}
.nav a { 
  color: var(--fg); 
  text-decoration: none !important; 
  opacity: .9; 
  text-transform: uppercase; 
  letter-spacing: .06em; 
  font-weight: 600; 
  position: relative; 
  padding: 8px 16px; 
  border-radius: 999px; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}
/* Panel i Mintax — tylko dla zalogowanych (bez .nav-role-visible = ukryj) */
.nav a.nav-role-link:not(.nav-role-visible) {
  display: none !important;
}
.nav a:not(.btn):not(.social-btn):hover { 
  opacity: 1; 
  background: rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2), 0 2px 8px rgba(0,0,0,0.1);
  transform: translateY(-1px);
  isolation: isolate;
}
.nav a:not(.btn):not(.social-btn):active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nav a.social-btn {
  display: flex; 
  align-items: center; 
  justify-content: center;
  width: 48px; 
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.4);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  color: #fff;
  opacity: 1;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nav a.social-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.nav a.social-btn:hover {
  opacity: 1;
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.2);
}
.nav a.social-btn:active {
  transform: scale(1.05) translateY(0);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Zaloguj – ten sam kształt i rozmiar co Kontakt (.btn), tylko inny kolor (szkło) */
.nav a.btn.auth-btn {
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.nav a.btn.auth-btn:hover {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* Selektor języka w nagłówku – ta sama czcionka co .nav a, skróty PL, EN, itd. */
.lang-selector-wrap {
  display: flex;
  align-items: center;
  margin-left: 4px;
}
.lang-select {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-base), "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji";
  font-size: 1em;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fg);
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 8px 28px 8px 14px;
  cursor: pointer;
  min-height: 44px;
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.lang-select:hover {
  background-color: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.5);
}
.lang-select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* --- MINTAX --- */
.mintax-hero {
  min-height: clamp(420px, 60vh, 580px);
  margin: 32px 0 48px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.15));
}
.mintax-hero-media {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.25)), url('assets/IMG_4629.webp') center/cover no-repeat !important;
  filter: saturate(1.15) brightness(0.95);
}
.mintax-title {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: .04em;
}
.mintax-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(16px, 1.9vw, 20px);
}
.mintax-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.mintax-app-section {
  padding-top: 0;
}
.mintax-app-section .container {
  width: 100%;
  max-width: none;
  padding: 0;
}
.mintax-app {
  display: grid;
  grid-template-columns: clamp(280px, 20vw, 360px) minmax(960px, 1fr);
  gap: 34px;
  padding: 34px 0;
  position: relative;
  width: 100%;
}
.mintax-sidebar-wrap {
  display: flex;
  justify-content: center;
  background: rgba(255,255,255,0.72);
  border-radius: 0 28px 28px 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 20px 50px rgba(12,30,40,0.12);
}
.mintax-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: clamp(260px, 18vw, 320px);
  padding: 28px 24px;
}
.mintax-sidebar-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.08));
  cursor: pointer;
  text-align: left;
  transition: all .2s ease;
  font-weight: 600;
  color: var(--fg);
}
.mintax-sidebar-item small {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.mintax-sidebar-item:hover {
  border-color: rgba(102, 126, 234, 0.4);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.12));
}
.mintax-sidebar-item.active {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.25), rgba(118, 75, 162, 0.2));
  border-color: rgba(102, 126, 234, 0.4);
  box-shadow: 0 14px 40px rgba(102, 126, 234, 0.2);
}
.mintax-modules {
  background: rgba(255,255,255,0.72);
  border-radius: 24px;
  padding: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 20px 50px rgba(12,30,40,0.12);
  position: relative;
  overflow: visible;
}
.mintax-module {
  display: none;
  flex-direction: column;
  gap: 24px;
  animation: fadeSlide .4s ease;
}
.mintax-module.active {
  display: flex;
}
.mintax-module-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.mintax-module-head h3 {
  margin: 0 0 4px;
  font-size: 26px;
}
.mintax-module-head p {
  margin: 0;
  color: var(--muted);
}
.mintax-module-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn.small {
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: .06em;
}
.mintax-dropzones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.mintax-dropzone {
  border: 2px dashed rgba(102, 126, 234, 0.4);
  border-radius: 20px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.06));
  transition: all .2s ease;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  outline: none;
}
.mintax-dropzone h4 {
  margin: 0;
  font-size: 18px;
}
.mintax-dropzone p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.mintax-dropzone.dragover {
  border-color: rgba(102, 126, 234, 0.7);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.12));
  box-shadow: 0 18px 36px rgba(102, 126, 234, 0.25);
}
.mintax-dropzone-list {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mintax-upload-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34,224,170,0.15);
  border: 1px solid rgba(34,224,170,0.24);
  font-size: 12px;
}
.mintax-upload-pill.error {
  background: rgba(255,94,81,0.12);
  border-color: rgba(255,94,81,0.4);
}
.mintax-table-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mintax-table-scroll {
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(8,17,24,0.05);
}
.mintax-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}
.mintax-table th,
.mintax-table td {
  padding: 12px 14px;
  text-align: left;
  font-size: 13px;
  border-bottom: 1px solid rgba(8,17,24,0.06);
  background: rgba(255,255,255,0.75);
}
.mintax-table thead th {
  position: sticky;
  top: 0;
  background: rgba(246,251,255,0.95);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .08em;
}
.mintax-table input,
.mintax-table select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(8,17,24,0.12);
  background: rgba(255,255,255,0.92);
  font: inherit;
}
.mintax-table-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.mintax-tag {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.tag-cost {
  background: rgba(95,211,255,0.18);
  color: #094864;
}
.tag-sale {
  background: rgba(255,191,42,0.22);
  color: #5e3b00;
}
.mintax-icon-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color .2s ease;
}
.mintax-icon-btn:hover {
  color: #ff5e51;
}
.mintax-link {
  border: none;
  background: none;
  color: #0a7e5c;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 600;
  padding: 0;
}
.mintax-card {
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mintax-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.mintax-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mintax-grid label span {
  font-size: 12px;
  letter-spacing: .05em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
}

.mintax-booking-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  align-items: end;
  margin-top: 4px;
}
.mintax-grid input,
.mintax-grid select,
.mintax-grid textarea {
  border-radius: 12px;
  border: 1px solid rgba(8,17,24,0.15);
  padding: 10px 12px;
  font: inherit;
  background: rgba(255,255,255,0.92);
}
.mintax-grid textarea {
  min-height: 96px;
  resize: vertical;
}
.mintax-grid .span-2 {
  grid-column: span 2;
}
.mintax-status {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.mintax-booking-detected {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(8,17,24,0.08);
}
.mintax-booking-columns {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.mintax-booking-columns li {
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(34,224,170,0.12);
  border: 1px solid rgba(34,224,170,0.22);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mintax-booking-preview {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mintax-booking-preview h4 {
  margin: 0;
  font-size: 16px;
}
.mintax-booking-preview-list {
  display: grid;
  gap: 8px;
  max-height: 680px;
  overflow-y: auto;
  border: 1px solid rgba(8,17,24,0.08);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.65);
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}
.mintax-booking-preview-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(34,224,170,0.08);
  border: 1px solid rgba(34,224,170,0.18);
  font-size: 13px;
  position: relative;
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}
.mintax-booking-preview-content {
  display: grid;
  gap: 4px;
  flex: 1;
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}
.mintax-booking-preview-item strong {
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.mintax-booking-preview-remove {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: rgba(255, 95, 162, 0.15);
  color: var(--accent-pink);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-weight: bold;
}
.mintax-booking-preview-remove:hover {
  background: rgba(255, 95, 162, 0.25);
  transform: scale(1.1);
}
.mintax-booking-preview-remove:active {
  transform: scale(0.95);
}
.mintax-booking-guide {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}
.mintax-booking-guide li {
  line-height: 1.5;
}
.mintax-booking-columns li strong {
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 11px;
  color: rgba(8,17,24,0.55);
}

/* Pobyty długoterminowe */
.mintax-longterm-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.mintax-longterm-list:empty ~ #mintax-longterm-empty { display: block; }
.mintax-longterm-list:not(:empty) ~ #mintax-longterm-empty { display: none; }
.mintax-longterm-card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(34,224,170,0.22);
  background: rgba(255,255,255,0.5);
  display: grid;
  gap: 10px;
}
.mintax-longterm-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
.mintax-longterm-guest-name { font-size: 16px; }
.mintax-longterm-rent { color: var(--muted); font-size: 14px; }
.mintax-longterm-card-meta { font-size: 13px; color: var(--muted); }
.mintax-longterm-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.mintax-longterm-detail-section {
  margin-bottom: 20px;
}
.mintax-longterm-detail-section h5 {
  margin: 0 0 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
}
.mintax-longterm-refaktura .mintax-dropzone {
  min-height: 100px;
  margin: 12px 0;
}
.mintax-refaktura-files {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}
.mintax-refaktura-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: rgba(34,224,170,0.1);
  border-radius: 8px;
}
.mintax-refaktura-file-item button {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 2px 6px;
}
.mintax-refaktura-file-item button:hover { color: var(--accent-pink); }
.mintax-muted {
  color: var(--muted);
  font-style: italic;
}
.mintax-hidden {
  display: none !important;
}
.mintax-invoice-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.mintax-invoice-item {
  border: 1px dashed rgba(8,17,24,0.12);
  border-radius: 16px;
  padding: 14px;
  position: relative;
  background: rgba(255,255,255,0.65);
}
.mintax-invoice-item-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(80px, 1fr));
  gap: 10px;
  align-items: end;
}
.mintax-invoice-item-grid label span {
  font-size: 11px;
  text-transform: uppercase;
}
.mintax-invoice-preview {
  min-height: 320px;
}
.mintax-preview-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}
.mintax-preview-card * {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}
.mintax-preview-card header h3 {
  margin: 0;
}
.mintax-preview-card header p {
  margin: 4px 0 0;
  color: var(--muted);
}
.mintax-preview-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.mintax-preview-columns h4 {
  margin: 0 0 6px;
}
.mintax-preview-columns p {
  margin: 0;
  font-size: 14px;
}
.mintax-preview-card table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
}
.mintax-preview-card table th,
.mintax-preview-card table td {
  padding: 8px 10px;
  border: 1px solid rgba(8,17,24,0.08);
  font-size: 13px;
}
.mintax-preview-card table tfoot th,
.mintax-preview-card table tfoot td {
  font-weight: 700;
  background: rgba(34,224,170,0.12);
}
.mintax-preview-summary,
.mintax-preview-remarks {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.mintax-invoice-print {
  width: 210mm;
  min-height: 297mm;
  padding: 20mm;
  background: #fff;
  color: #000;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.mintax-invoice-print * {
  font-family: 'Roboto', Arial, sans-serif;
  box-sizing: border-box;
}

.mintax-invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.mintax-invoice-header-left {
  flex: 1;
}

.mintax-invoice-title-section {
  margin-bottom: 12px;
}

.mintax-invoice-header h1 {
  margin: 0 0 3px 0;
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

.mintax-invoice-number {
  margin: 0;
  font-size: 14px;
  color: #000;
  font-weight: normal;
}

.mintax-company-data {
  font-size: 11px;
  line-height: 1.5;
  color: #000;
}

.mintax-company-data p {
  margin: 2px 0;
}

.mintax-invoice-header-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.mintax-logo-link {
  display: inline-block;
  text-decoration: none;
}

.mintax-invoice-logo {
  height: 144px;
  width: auto;
  max-width: 300px;
}

.mintax-invoice-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
}

.mintax-buyer-section h2,
.mintax-details-section h2 {
  margin: 0 0 8px 0;
  font-size: 12px;
  font-weight: bold;
  color: #000;
}

.mintax-buyer-data {
  font-size: 11px;
  line-height: 1.6;
  color: #000;
}

.mintax-buyer-data p {
  margin: 3px 0;
}

.mintax-details-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mintax-detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 11px;
}

.mintax-detail-row dt {
  font-weight: bold;
  margin-right: 15px;
  color: #000;
}

.mintax-detail-row dd {
  margin: 0;
  text-align: right;
  color: #000;
}

.mintax-invoice-items {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
  margin-bottom: 20px;
  border: 1px solid #000;
}

.mintax-invoice-items th,
.mintax-invoice-items td {
  border: 1px solid #000;
  padding: 8px;
  text-align: left;
}

.mintax-invoice-items th {
  background-color: #f0f0f0;
  font-weight: bold;
  text-align: center;
  color: #000;
}

.mintax-invoice-items td {
  text-align: center;
  color: #000;
}

.mintax-invoice-items tbody td:first-child {
  text-align: center;
}

.mintax-invoice-items tbody td:nth-child(2) {
  text-align: left;
}

.mintax-invoice-items tfoot th,
.mintax-invoice-items tfoot td {
  font-weight: bold;
  background-color: #f0f0f0;
  color: #000;
}

.mintax-invoice-items tfoot th {
  text-align: left;
}

.mintax-invoice-items tfoot td {
  text-align: center;
}

.mintax-invoice-remarks {
  margin-bottom: 20px;
}

.mintax-invoice-remarks h2 {
  margin: 0 0 8px 0;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  color: #000;
}

.mintax-invoice-remarks p {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
  color: #000;
}

.mintax-invoice-ksef-info {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #ccc;
  font-size: 9px;
  color: #666;
  text-align: center;
}

.mintax-invoice-ksef-info p {
  margin: 0;
}
.mintax-settlements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.mintax-stat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mintax-stat-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.mintax-stat-list dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}
.mintax-stat-list dd {
  margin: 0;
  font-weight: 600;
}
.mintax-amount-highlight {
  color: #d7424a;
}
.mintax-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(12,30,40,0.92);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease;
  max-width: 320px;
  z-index: 200;
}
.mintax-toast.visible {
  opacity: 1;
  transform: translateY(0);
}
.mintax-toast strong {
  display: block;
  margin-bottom: 6px;
}
.mintax-toast p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}
.mintax-toast-warning {
  background: rgba(255,191,42,0.95);
  color: #3c2600;
}
.mintax-toast-error {
  background: rgba(215,66,74,0.95);
}
.mintax-toast-info {
  background: rgba(12,30,40,0.92);
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .mintax-app {
    grid-template-columns: minmax(0, 1fr);
  }
  .mintax-sidebar {
    flex-direction: row;
    overflow: auto;
    padding-bottom: 6px;
  }
  .mintax-sidebar-item {
    min-width: 170px;
  }
}
@media (max-width: 720px) {
  .mintax-invoice-item-grid {
    grid-template-columns: repeat(2, minmax(90px, 1fr));
  }
  .mintax-grid .span-2 {
    grid-column: span 1;
  }
  .mintax-app {
    padding: 20px;
  }
  .mintax-modules {
    padding: 18px;
  }
}
@media (max-width: 480px) {
  .mintax-module-head {
    flex-direction: column;
  }
  .mintax-module-actions {
    width: 100%;
    justify-content: stretch;
  }
  .mintax-module-actions .btn {
    flex: 1;
    text-align: center;
  }
}
/* Logo: zachowanie proporcji w nagłówku i stopce */
.brand {
  display: inline-block;
  text-decoration: none;
}

.logo { 
  height: 74px; 
  width: auto; 
  display: block;
  position: relative;
}

.logo-footer { 
  height: 150px; 
  width: auto; 
  max-width: 300px;
  display: block;
  filter: brightness(1.05) contrast(1.1) drop-shadow(0 2px 8px rgba(0,0,0,0.2)) drop-shadow(0 1px 3px rgba(0,0,0,0.3));
  margin-bottom: 16px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  align-self: flex-start;
}

.hero { position: relative; height: clamp(520px, 68vh, 760px); overflow: hidden; border-radius: 0; margin: 8px 0 32px; }
.hero-media { 
  position: absolute; 
  inset: 0; 
  background: #d6f6ff center/cover no-repeat; 
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}
.mintax-hero .hero-media {
  background: linear-gradient(120deg, rgba(34,224,170,0.28), rgba(95,211,255,0.18)), url('assets/IMG_4629.webp') center/cover no-repeat;
  filter: saturate(1.15) brightness(0.95);
}
.mintax-hero .hero-media {
  background: linear-gradient(120deg, rgba(34,224,170,0.28), rgba(95,211,255,0.18)), url('assets/IMG_4629.webp') center/cover no-repeat;
  filter: saturate(1.15) brightness(0.95);
}
/* Hero overlay dla strony głównej - efekt liquid glass w stylu iOS */
.hero-overlay-home {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(139% - 59px);
  max-width: 1252px;
  height: auto;
  min-height: 253px;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Efekt liquid glass w stylu iOS - bardzo subtelne tło z gradientem */
  background: 
    linear-gradient(135deg, 
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.08) 50%,
      rgba(34, 224, 170, 0.05) 100%
    ),
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.04) 100%
    );
  /* Mocny blur i wysokie nasycenie jak w iOS */
  backdrop-filter: blur(40px) saturate(200%) brightness(1.1);
  -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.1);
  /* Subtelna ramka z lekkim połyskiem */
  border: 1px solid rgba(255, 255, 255, 0.25);
  /* Zaawansowane cienie dla efektu "mokrego" szkła */
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 0.5px rgba(255, 255, 255, 0.1);
  z-index: 1;
  padding: 51px 39px;
  border-radius: 24px;
  overflow: visible;
  isolation: isolate;
  /* Płynne przejścia dla lepszego efektu */
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}
/* Hero overlay dla stron apartamentów - zachowany obecny wygląd */
.hero-overlay:not(.hero-overlay-home) {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  height: auto;
  min-height: 120px;
  max-height: 180px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(34,224,170,.042), rgba(95,211,255,.042)), rgba(255,255,255,.112);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 1;
  margin: 16px 0 0;
  padding: 20px 20px 22px 20px;
  border-radius: 20px 20px 20px 20px;
  overflow: visible;
}
/* Hero content dla strony głównej */
.hero-overlay-home .hero-content {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  overflow: visible;
}
/* Hero content dla stron apartamentów */
.hero-overlay:not(.hero-overlay-home) .hero-content {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  overflow: visible;
}
.hero h1 { display: block; font-size: clamp(14px, 2vw, 20px); margin: 0; line-height: 1.2; font-weight: 600; }
.hero p { display: block; font-size: clamp(12px, 1.5vw, 16px); margin: 0; opacity: 0.95; }
/* Hero CTA dla strony głównej */
.hero-overlay-home .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 0;
  position: relative;
  z-index: 2;
  transform: none;
}

.hero-overlay-home .hero-cta .location-btn {
  flex: 0 1 auto;
  min-width: 140px;
  text-align: center;
  text-decoration: none;
}

/* Przyciski w hero i na kartach – liquid glass (bez koralowego), styl iOS */
.hero-overlay-home .hero-cta .btn,
.hero-overlay-home .hero-cta .location-btn,
.apartment-actions .btn,
.hero-cta-btn {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.hero-overlay-home .hero-cta .btn:hover,
.hero-overlay-home .hero-cta .location-btn:hover,
.apartment-actions .btn:hover,
.hero-cta-btn:hover {
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.hero-overlay-home .hero-cta .btn:active,
.hero-overlay-home .hero-cta .location-btn:active,
.apartment-actions .btn:active,
.hero-cta-btn:active {
  transform: translateY(0);
}

/* Karty apartamentów: brak transform przy hover (żeby nie ruszać sąsiedniego przycisku) + delikatny odcień CTA */
.apartment-actions .btn,
.apartment-actions .btn:hover {
  transform: none;
}
/* Wyłączenie połysku/sheen na przyciskach kart – jednolity kolor, bez jaśniejszej prawej krawędzi */
.apartment-actions .btn::before {
  opacity: 0.12;
}
.apartment-actions .btn:hover::after {
  content: none;
}
.apartment-actions .btn,
.apartment-actions .btn.primary,
.apartment-actions .btn.ghost {
  background: rgba(255, 185, 178, 0.38);
  border-color: rgba(255, 205, 198, 0.58);
  color: #fff;
}
.apartment-actions .btn:hover,
.apartment-actions .btn.primary:hover,
.apartment-actions .btn.ghost:hover {
  background: rgba(255, 165, 158, 0.48);
  border-color: rgba(255, 195, 188, 0.68);
  color: #fff;
}

/* Hero: przyciski bez odcienia (białe szkło) */
/* Strony zbiorcze (doki, bastion-walowa, seaside): Zobacz apartamenty = grafit, Rezerwuj bezpośrednio = czerwony (jak na stronie głównej) */
.hero-cta-btn.primary {
  background: rgba(45, 48, 52, 0.3);
  border-color: rgba(60, 64, 70, 0.4);
  color: #fff;
}
.hero-cta-btn.primary:hover {
  background: rgba(55, 58, 63, 0.38);
  border-color: rgba(75, 79, 85, 0.48);
  color: #fff;
}
.hero-cta-btn.ghost {
  background: rgba(255, 130, 115, 0.62);
  border-color: rgba(255, 165, 152, 0.82);
  color: #fff;
}
.hero-cta-btn.ghost:hover {
  background: rgba(255, 110, 92, 0.75);
  border-color: rgba(255, 145, 130, 0.9);
  color: #fff;
}

/* Sekcja „Rezerwuj bezpośrednio” – „Sprawdź dostępność” o 30% mocniejszy kolor (w strefie hero) */
#availability-cta,
.direct-booking-cta .btn.primary {
  background: linear-gradient(180deg, #ff6b5a, #ff3d2a);
  border-color: #ff3d2a;
  color: #fff;
  box-shadow: 0 8px 26px rgba(255, 61, 42, 0.55);
}
#availability-cta:hover,
.direct-booking-cta .btn.primary:hover {
  background: linear-gradient(180deg, #ff7868, #ff4a38);
  border-color: #ff4a38;
  box-shadow: 0 10px 32px rgba(255, 61, 42, 0.65);
}

/* Strefa hero: przyciski lokacji (DOKI, Bastion, Seaside) – ciemny grafit, przezroczystość +20% (ok. 70%) */
.hero-overlay-home .hero-cta .location-btn {
  background: rgba(45, 48, 52, 0.3);
  border-color: rgba(60, 64, 70, 0.4);
  color: #fff;
}
.hero-overlay-home .hero-cta .location-btn:hover {
  background: rgba(55, 58, 63, 0.38);
  border-color: rgba(75, 79, 85, 0.48);
  color: #fff;
}

/* Strefa hero: „Rezerwuj bezpośrednio” (Sprawdź dostępność) – CTA o 30% mocniejszy */
.hero-overlay-home .hero-cta .btn.ghost {
  background: rgba(255, 130, 115, 0.62);
  border-color: rgba(255, 165, 152, 0.82);
  color: #fff;
}
.hero-overlay-home .hero-cta .btn.ghost:hover {
  background: rgba(255, 110, 92, 0.75);
  border-color: rgba(255, 145, 130, 0.9);
  color: #fff;
}

/* Wersja mobilna hero na stronie głównej */
@media (max-width: 869px) {
  .hero-overlay-home {
    /* Węższa ramka, żeby po bokach zawsze było widać zdjęcie w tle */
    width: calc(100% - 48px);
    max-width: 400px;
    margin: 0 auto;
    padding: 24px 16px;
    /* Zaokrąglenia zawsze widoczne – ramka nie sięga krawędzi ekranu */
    border-radius: 24px;
  }

  .hero-overlay-home .hero-content {
    padding: 0;
    max-width: 100%;
  }

  .hero-overlay-home .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  .hero-overlay-home .hero-cta .btn,
  .hero-overlay-home .hero-cta .location-btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
}

/* Hero CTA dla stron apartamentów */
.hero-overlay:not(.hero-overlay-home) .hero-cta {
  display: inline-flex;
  gap: 12px;
  margin-top: 8px;
  position: relative;
  z-index: 2;
  transform: translateY(22px);
}
.apartment-neon {
  font-family: 'Bungee Shade', 'Bungee', cursive !important;
  font-size: clamp(18px, 3.5vw, 42px) !important;
  margin-top: 8px !important;
  margin-bottom: 6px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.01em !important;
  font-weight: 400 !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  overflow: visible !important;
  /* Vice City style neon - cyjan i różowy */
  color: #fff !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 4px rgba(0, 255, 255, .9),
    0 0 8px rgba(0, 255, 255, .85),
    0 0 12px rgba(255, 0, 255, .7),
    0 0 18px rgba(255, 0, 255, .6),
    0 0 24px rgba(0, 255, 255, .5),
    0 0 32px rgba(255, 0, 255, .4) !important;
  filter: drop-shadow(0 0 4px rgba(0,255,255,.5)) drop-shadow(0 0 8px rgba(255,0,255,.4)) !important;
  animation: neon-flicker-vice 2.5s infinite ease-in-out !important;
}
/* Podtytuł w hero apartamentu */
.hero-subtitle {
  font-size: clamp(12px, 1.6vw, 16px);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  margin: 0;
  opacity: 0.9;
  font-family: var(--font-base);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Neonowy napis w hero */
.neon-title:not(.apartment-neon-deluxe):not(.apartment-neon):not(.apartment-neon-ocean):not(.apartment-neon-deluxe-small) {
  font-family: var(--font-decorative);
  font-size: clamp(34px, 7.2vw, 104px);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
  display: block;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 6px rgba(255, 113, 198, .9),
    0 0 14px rgba(255, 113, 198, .85),
    0 0 24px rgba(255, 191, 42, .6),
    0 0 36px rgba(95, 211, 255, .55);
  filter: drop-shadow(0 0 6px rgba(255,113,198,.45)) drop-shadow(0 0 14px rgba(255,191,42,.25));
  animation: neon-flicker 3.8s infinite ease-in-out;
}
/* Zapewnij poprawne wyświetlanie trzech linii tylko dla stylów Vice City */
.neon-title[class*="vice-"] br {
  display: block;
  content: "";
  margin: 0.1em 0;
}
.neon-title[class*="vice-"] {
  text-align: center;
  display: block;
}
/* Alternatywna propozycja neonu (poziomo, bez pochylenia) */
.neon-title.alt {
  font-family: var(--font-decorative);
  font-size: clamp(28px, 6.8vw, 88px);
  font-weight: 400;
  letter-spacing: .01em;
  transform: none;
  color: #fff;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 8px rgba(95,211,255,.95),
    0 0 18px rgba(95,211,255,.85),
    0 0 28px rgba(255,95,162,.55);
  animation: neon-flicker 4.6s infinite ease-in-out;
}
/* Wariacje kolorystyczne do losowania */
.neon-title.sunset {
  text-shadow:
    0 0 2px #fff,
    0 0 8px rgba(255,105,180,.95),
    0 0 18px rgba(255,165,0,.85),
    0 0 28px rgba(255,105,180,.65);
}
.neon-title.ocean {
  text-shadow:
    0 0 2px #fff,
    0 0 8px rgba(64,224,208,.95),
    0 0 18px rgba(0,191,255,.85),
    0 0 28px rgba(0,191,255,.6);
}
.neon-title.mint {
  text-shadow:
    0 0 2px #fff,
    0 0 8px rgba(120, 240, 209, .95),
    0 0 18px rgba(34, 224, 170, .85),
    0 0 28px rgba(34, 224, 170, .6);
}
.neon-title.gold {
  text-shadow:
    0 0 2px #fff,
    0 0 8px rgba(255,215,0,.95),
    0 0 18px rgba(255,165,0,.85),
    0 0 28px rgba(255,165,0,.6);
}


/* Więcej wariantów neonów w stylu Vice City - różne intensywności i efekty */
.neon-title.vice-intense {
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 6px rgba(0, 255, 255, 1),
    0 0 12px rgba(0, 255, 255, .95),
    0 0 18px rgba(255, 0, 255, .9),
    0 0 26px rgba(255, 0, 255, .85),
    0 0 36px rgba(0, 255, 255, .8),
    0 0 48px rgba(255, 0, 255, .75),
    0 0 60px rgba(0, 255, 255, .7) !important;
  filter: drop-shadow(0 0 8px rgba(0,255,255,.7)) drop-shadow(0 0 16px rgba(255,0,255,.6)) drop-shadow(0 0 24px rgba(0,255,255,.5)) !important;
  animation: neon-flicker-intense 2.2s infinite ease-in-out !important;
}

.neon-title.vice-soft {
  text-shadow:
    0 0 2px rgba(255,255,255,.9),
    0 0 4px rgba(0, 255, 255, .7),
    0 0 8px rgba(255, 0, 255, .6),
    0 0 12px rgba(0, 255, 255, .5),
    0 0 18px rgba(255, 0, 255, .4) !important;
  filter: drop-shadow(0 0 4px rgba(0,255,255,.4)) drop-shadow(0 0 8px rgba(255,0,255,.3)) !important;
  animation: neon-flicker-soft 3.5s infinite ease-in-out !important;
}

/* Warianty z różnymi czcionkami neonowymi */
.neon-title.font-monoton {
  font-family: 'Monoton', cursive !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 6px rgba(0, 255, 255, .9),
    0 0 14px rgba(255, 0, 255, .85),
    0 0 24px rgba(0, 255, 255, .7),
    0 0 36px rgba(255, 0, 255, .6) !important;
  filter: drop-shadow(0 0 6px rgba(0,255,255,.5)) drop-shadow(0 0 14px rgba(255,0,255,.4)) !important;
}

.neon-title.font-neonderthaw {
  font-family: 'Neonderthaw', cursive !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 6px rgba(255, 0, 255, .9),
    0 0 14px rgba(0, 255, 255, .85),
    0 0 24px rgba(255, 0, 255, .7),
    0 0 36px rgba(0, 255, 255, .6) !important;
  filter: drop-shadow(0 0 6px rgba(255,0,255,.5)) drop-shadow(0 0 14px rgba(0,255,255,.4)) !important;
}

.neon-title.font-bold {
  font-family: var(--font-decorative) !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  text-transform: uppercase !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 6px rgba(0, 255, 255, .95),
    0 0 14px rgba(255, 0, 255, .9),
    0 0 24px rgba(0, 255, 255, .8),
    0 0 36px rgba(255, 0, 255, .7) !important;
  filter: drop-shadow(0 0 6px rgba(0,255,255,.6)) drop-shadow(0 0 14px rgba(255,0,255,.5)) !important;
}

.neon-title.font-wide {
  font-family: var(--font-decorative) !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 6px rgba(0, 255, 255, .9),
    0 0 14px rgba(255, 0, 255, .85),
    0 0 24px rgba(0, 255, 255, .7),
    0 0 36px rgba(255, 0, 255, .6) !important;
  filter: drop-shadow(0 0 6px rgba(0,255,255,.5)) drop-shadow(0 0 14px rgba(255,0,255,.4)) !important;
}

.neon-title.font-condensed {
  font-family: var(--font-decorative) !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 6px rgba(255, 0, 255, .9),
    0 0 14px rgba(0, 255, 255, .85),
    0 0 24px rgba(255, 0, 255, .7),
    0 0 36px rgba(0, 255, 255, .6) !important;
  filter: drop-shadow(0 0 6px rgba(255,0,255,.5)) drop-shadow(0 0 14px rgba(0,255,255,.4)) !important;
}

/* Więcej wariantów z różnymi czcionkami neonowymi */

.neon-title.vice-glow {
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 5px rgba(0, 255, 255, .95),
    0 0 10px rgba(0, 255, 255, .9),
    0 0 16px rgba(255, 0, 255, .85),
    0 0 24px rgba(255, 0, 255, .8),
    0 0 34px rgba(0, 255, 255, .75),
    0 0 46px rgba(255, 0, 255, .7),
    0 0 60px rgba(0, 255, 255, .65) !important;
  filter: drop-shadow(0 0 10px rgba(0,255,255,.6)) drop-shadow(0 0 20px rgba(255,0,255,.5)) drop-shadow(0 0 30px rgba(0,255,255,.4)) !important;
  animation: neon-glow 3.2s infinite ease-in-out !important;
}

.neon-title.vice-cyber {
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 4px rgba(0, 255, 255, .95),
    0 0 8px rgba(0, 255, 255, .9),
    0 0 12px rgba(255, 20, 147, .85),
    0 0 18px rgba(0, 255, 255, .8),
    0 0 26px rgba(255, 20, 147, .75),
    0 0 36px rgba(0, 255, 255, .7),
    0 0 48px rgba(255, 20, 147, .65) !important;
  filter: drop-shadow(0 0 6px rgba(0,255,255,.6)) drop-shadow(0 0 12px rgba(255,20,147,.5)) drop-shadow(0 0 18px rgba(0,255,255,.4)) !important;
  animation: neon-cyber 2.6s infinite ease-in-out !important;
}

.neon-title.vice-retro {
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 6px rgba(255, 105, 180, .95),
    0 0 12px rgba(0, 191, 255, .9),
    0 0 20px rgba(255, 105, 180, .85),
    0 0 30px rgba(0, 191, 255, .8),
    0 0 42px rgba(255, 105, 180, .75) !important;
  filter: drop-shadow(0 0 8px rgba(255,105,180,.5)) drop-shadow(0 0 16px rgba(0,191,255,.4)) !important;
  animation: neon-retro 3.0s infinite ease-in-out !important;
}

.neon-title.vice-neon {
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 5px rgba(0, 255, 255, .95),
    0 0 10px rgba(255, 0, 255, .9),
    0 0 15px rgba(0, 255, 255, .85),
    0 0 22px rgba(255, 0, 255, .8),
    0 0 32px rgba(0, 255, 255, .75),
    0 0 44px rgba(255, 0, 255, .7) !important;
  filter: drop-shadow(0 0 7px rgba(0,255,255,.6)) drop-shadow(0 0 15px rgba(255,0,255,.5)) drop-shadow(0 0 25px rgba(0,255,255,.4)) !important;
  animation: neon-flicker 3.6s infinite ease-in-out !important;
}

.neon-title.vice-arcade {
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 4px rgba(255, 0, 255, .95),
    0 0 8px rgba(0, 255, 255, .9),
    0 0 14px rgba(255, 0, 255, .85),
    0 0 22px rgba(0, 255, 255, .8),
    0 0 32px rgba(255, 0, 255, .75),
    0 0 44px rgba(0, 255, 255, .7),
    0 0 58px rgba(255, 0, 255, .65) !important;
  filter: drop-shadow(0 0 6px rgba(255,0,255,.6)) drop-shadow(0 0 14px rgba(0,255,255,.5)) drop-shadow(0 0 24px rgba(255,0,255,.4)) !important;
  animation: neon-arcade 2.4s infinite ease-in-out !important;
}

/* Styl neonu lat 80. - intensywny, elektryczny, charakterystyczny dla Vice City */
.neon-title.vice-80s {
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 6px rgba(0, 255, 255, 1),
    0 0 10px rgba(255, 20, 147, .95),
    0 0 16px rgba(0, 255, 255, .9),
    0 0 24px rgba(255, 20, 147, .85),
    0 0 34px rgba(0, 255, 255, .8),
    0 0 46px rgba(255, 20, 147, .75),
    0 0 60px rgba(0, 255, 255, .7),
    0 0 76px rgba(255, 20, 147, .65),
    0 0 94px rgba(0, 255, 255, .6),
    0 0 114px rgba(255, 20, 147, .55) !important;
  filter: 
    drop-shadow(0 0 4px rgba(0,255,255,.8)) 
    drop-shadow(0 0 8px rgba(255,20,147,.7)) 
    drop-shadow(0 0 14px rgba(0,255,255,.6))
    drop-shadow(0 0 22px rgba(255,20,147,.5))
    drop-shadow(0 0 32px rgba(0,255,255,.4)) !important;
  animation: neon-flicker-80s 2.8s infinite ease-in-out !important;
  will-change: text-shadow, filter, opacity !important;
}

/* Nowy styl neonu - Vampiro One - charakterystyczna czcionka z efektem neonowym */
.neon-title.neon-vampiro {
  font-family: 'Vampiro One', cursive !important;
  font-size: clamp(34px, 7.2vw, 104px);
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
  display: block;
}

/* Wariant Vampiro - niebiesko-cyjanowy */
.neon-title.neon-vampiro-cyan {
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 7px rgba(0, 255, 255, .95),
    0 0 12px rgba(0, 255, 255, .9),
    0 0 20px rgba(0, 255, 255, .85),
    0 0 30px rgba(0, 255, 255, .8),
    0 0 42px rgba(0, 255, 255, .75),
    0 0 56px rgba(0, 255, 255, .7) !important;
  filter: 
    drop-shadow(0 0 4px rgba(0,255,255,.8)) 
    drop-shadow(0 0 10px rgba(0,255,255,.7))
    drop-shadow(0 0 18px rgba(0,255,255,.6)) !important;
  animation: neon-vampiro-cyan-pulse 2.6s infinite ease-in-out !important;
}

/* Wariant Vampiro - różowo-magenta */
.neon-title.neon-vampiro-pink {
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 7px rgba(255, 20, 147, .95),
    0 0 12px rgba(255, 0, 255, .9),
    0 0 20px rgba(255, 20, 147, .85),
    0 0 30px rgba(255, 0, 255, .8),
    0 0 42px rgba(255, 20, 147, .75),
    0 0 56px rgba(255, 0, 255, .7) !important;
  filter: 
    drop-shadow(0 0 4px rgba(255,20,147,.8)) 
    drop-shadow(0 0 10px rgba(255,0,255,.7))
    drop-shadow(0 0 18px rgba(255,20,147,.6)) !important;
  animation: neon-vampiro-pink-pulse 2.6s infinite ease-in-out !important;
}

/* Wariant Vampiro - pomarańczowo-różowy */
.neon-title.neon-vampiro-orange {
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 7px rgba(255, 140, 0, .95),
    0 0 12px rgba(255, 20, 147, .9),
    0 0 20px rgba(255, 140, 0, .85),
    0 0 30px rgba(255, 20, 147, .8),
    0 0 42px rgba(255, 140, 0, .75),
    0 0 56px rgba(255, 20, 147, .7) !important;
  filter: 
    drop-shadow(0 0 4px rgba(255,140,0,.8)) 
    drop-shadow(0 0 10px rgba(255,20,147,.7))
    drop-shadow(0 0 18px rgba(255,140,0,.6)) !important;
  animation: neon-vampiro-orange-pulse 2.6s infinite ease-in-out !important;
}

/* Wariant Vampiro - fioletowo-różowy */
.neon-title.neon-vampiro-purple {
  font-family: 'Vampiro One', cursive !important;
  font-size: clamp(34px, 7.2vw, 104px);
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
  display: block;
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 7px rgba(138, 43, 226, .95),
    0 0 12px rgba(255, 0, 255, .9),
    0 0 20px rgba(138, 43, 226, .85),
    0 0 30px rgba(255, 0, 255, .8),
    0 0 42px rgba(138, 43, 226, .75),
    0 0 56px rgba(255, 0, 255, .7) !important;
  filter: 
    drop-shadow(0 0 4px rgba(138,43,226,.8)) 
    drop-shadow(0 0 10px rgba(255,0,255,.7))
    drop-shadow(0 0 18px rgba(138,43,226,.6)) !important;
  animation: neon-vampiro-purple-pulse 2.6s infinite ease-in-out !important;
}

/* Wariant Vampiro - niebieski */
.neon-title.neon-vampiro-blue {
  font-family: 'Vampiro One', cursive !important;
  font-size: clamp(34px, 7.2vw, 104px);
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
  display: block;
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 7px rgba(0, 191, 255, .95),
    0 0 12px rgba(30, 144, 255, .9),
    0 0 20px rgba(0, 191, 255, .85),
    0 0 30px rgba(30, 144, 255, .8),
    0 0 42px rgba(0, 191, 255, .75),
    0 0 56px rgba(30, 144, 255, .7) !important;
  filter: 
    drop-shadow(0 0 4px rgba(0,191,255,.8)) 
    drop-shadow(0 0 10px rgba(30,144,255,.7))
    drop-shadow(0 0 18px rgba(0,191,255,.6)) !important;
  animation: neon-vampiro-blue-pulse 2.6s infinite ease-in-out !important;
}

/* Wariant Vampiro - magenta */
.neon-title.neon-vampiro-magenta {
  font-family: 'Vampiro One', cursive !important;
  font-size: clamp(34px, 7.2vw, 104px);
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
  display: block;
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 7px rgba(255, 0, 255, .95),
    0 0 12px rgba(255, 20, 147, .9),
    0 0 20px rgba(255, 0, 255, .85),
    0 0 30px rgba(255, 20, 147, .8),
    0 0 42px rgba(255, 0, 255, .75),
    0 0 56px rgba(255, 20, 147, .7) !important;
  filter: 
    drop-shadow(0 0 4px rgba(255,0,255,.8)) 
    drop-shadow(0 0 10px rgba(255,20,147,.7))
    drop-shadow(0 0 18px rgba(255,0,255,.6)) !important;
  animation: neon-vampiro-magenta-pulse 2.6s infinite ease-in-out !important;
}

/* Wariant Vampiro - żółty */
.neon-title.neon-vampiro-yellow {
  font-family: 'Vampiro One', cursive !important;
  font-size: clamp(34px, 7.2vw, 104px);
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
  display: block;
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 7px rgba(255, 255, 0, .95),
    0 0 12px rgba(255, 215, 0, .9),
    0 0 20px rgba(255, 255, 0, .85),
    0 0 30px rgba(255, 215, 0, .8),
    0 0 42px rgba(255, 255, 0, .75),
    0 0 56px rgba(255, 215, 0, .7) !important;
  filter: 
    drop-shadow(0 0 4px rgba(255,255,0,.8)) 
    drop-shadow(0 0 10px rgba(255,215,0,.7))
    drop-shadow(0 0 18px rgba(255,255,0,.6)) !important;
  animation: neon-vampiro-yellow-pulse 2.6s infinite ease-in-out !important;
}

/* Wariant Vampiro - czerwony */
.neon-title.neon-vampiro-red {
  font-family: 'Vampiro One', cursive !important;
  font-size: clamp(34px, 7.2vw, 104px);
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
  display: block;
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 7px rgba(255, 0, 0, .95),
    0 0 12px rgba(255, 20, 147, .9),
    0 0 20px rgba(255, 0, 0, .85),
    0 0 30px rgba(255, 20, 147, .8),
    0 0 42px rgba(255, 0, 0, .75),
    0 0 56px rgba(255, 20, 147, .7) !important;
  filter: 
    drop-shadow(0 0 4px rgba(255,0,0,.8)) 
    drop-shadow(0 0 10px rgba(255,20,147,.7))
    drop-shadow(0 0 18px rgba(255,0,0,.6)) !important;
  animation: neon-vampiro-red-pulse 2.6s infinite ease-in-out !important;
}

/* Nowy styl neonu - Jacquard 12 Charted - unikalna czcionka z efektem neonowym */
.neon-title.neon-jacquard {
  font-family: 'Jacquard 12 Charted', cursive !important;
  font-size: clamp(34px, 7.2vw, 104px);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
  display: block;
}

/* Wariant Jacquard - niebiesko-cyjanowy */
.neon-title.neon-jacquard-cyan {
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 6px rgba(0, 255, 255, .95),
    0 0 11px rgba(0, 255, 255, .9),
    0 0 18px rgba(0, 255, 255, .85),
    0 0 27px rgba(0, 255, 255, .8),
    0 0 38px rgba(0, 255, 255, .75),
    0 0 51px rgba(0, 255, 255, .7) !important;
  filter: 
    drop-shadow(0 0 4px rgba(0,255,255,.8)) 
    drop-shadow(0 0 9px rgba(0,255,255,.7))
    drop-shadow(0 0 16px rgba(0,255,255,.6)) !important;
  animation: neon-jacquard-cyan-pulse 2.8s infinite ease-in-out !important;
}

/* Wariant Jacquard - różowo-magenta */
.neon-title.neon-jacquard-pink {
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 6px rgba(255, 20, 147, .95),
    0 0 11px rgba(255, 0, 255, .9),
    0 0 18px rgba(255, 20, 147, .85),
    0 0 27px rgba(255, 0, 255, .8),
    0 0 38px rgba(255, 20, 147, .75),
    0 0 51px rgba(255, 0, 255, .7) !important;
  filter: 
    drop-shadow(0 0 4px rgba(255,20,147,.8)) 
    drop-shadow(0 0 9px rgba(255,0,255,.7))
    drop-shadow(0 0 16px rgba(255,20,147,.6)) !important;
  animation: neon-jacquard-pink-pulse 2.8s infinite ease-in-out !important;
}

/* Wariant Jacquard - zielono-cyjanowy */
.neon-title.neon-jacquard-green {
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 6px rgba(0, 255, 127, .95),
    0 0 11px rgba(0, 255, 255, .9),
    0 0 18px rgba(0, 255, 127, .85),
    0 0 27px rgba(0, 255, 255, .8),
    0 0 38px rgba(0, 255, 127, .75),
    0 0 51px rgba(0, 255, 255, .7) !important;
  filter: 
    drop-shadow(0 0 4px rgba(0,255,127,.8)) 
    drop-shadow(0 0 9px rgba(0,255,255,.7))
    drop-shadow(0 0 16px rgba(0,255,127,.6)) !important;
  animation: neon-jacquard-green-pulse 2.8s infinite ease-in-out !important;
}

/* Wariant Jacquard - fioletowo-różowy */
.neon-title.neon-jacquard-purple {
  font-family: 'Jacquard 12 Charted', cursive !important;
  font-size: clamp(34px, 7.2vw, 104px);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
  display: block;
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 6px rgba(138, 43, 226, .95),
    0 0 11px rgba(255, 0, 255, .9),
    0 0 18px rgba(138, 43, 226, .85),
    0 0 27px rgba(255, 0, 255, .8),
    0 0 38px rgba(138, 43, 226, .75),
    0 0 51px rgba(255, 0, 255, .7) !important;
  filter: 
    drop-shadow(0 0 4px rgba(138,43,226,.8)) 
    drop-shadow(0 0 9px rgba(255,0,255,.7))
    drop-shadow(0 0 16px rgba(138,43,226,.6)) !important;
  animation: neon-jacquard-purple-pulse 2.8s infinite ease-in-out !important;
}

/* Wariant Jacquard - niebieski */
.neon-title.neon-jacquard-blue {
  font-family: 'Jacquard 12 Charted', cursive !important;
  font-size: clamp(34px, 7.2vw, 104px);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
  display: block;
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 6px rgba(0, 191, 255, .95),
    0 0 11px rgba(30, 144, 255, .9),
    0 0 18px rgba(0, 191, 255, .85),
    0 0 27px rgba(30, 144, 255, .8),
    0 0 38px rgba(0, 191, 255, .75),
    0 0 51px rgba(30, 144, 255, .7) !important;
  filter: 
    drop-shadow(0 0 4px rgba(0,191,255,.8)) 
    drop-shadow(0 0 9px rgba(30,144,255,.7))
    drop-shadow(0 0 16px rgba(0,191,255,.6)) !important;
  animation: neon-jacquard-blue-pulse 2.8s infinite ease-in-out !important;
}

/* Wariant Jacquard - magenta */
.neon-title.neon-jacquard-magenta {
  font-family: 'Jacquard 12 Charted', cursive !important;
  font-size: clamp(34px, 7.2vw, 104px);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
  display: block;
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 6px rgba(255, 0, 255, .95),
    0 0 11px rgba(255, 20, 147, .9),
    0 0 18px rgba(255, 0, 255, .85),
    0 0 27px rgba(255, 20, 147, .8),
    0 0 38px rgba(255, 0, 255, .75),
    0 0 51px rgba(255, 20, 147, .7) !important;
  filter: 
    drop-shadow(0 0 4px rgba(255,0,255,.8)) 
    drop-shadow(0 0 9px rgba(255,20,147,.7))
    drop-shadow(0 0 16px rgba(255,0,255,.6)) !important;
  animation: neon-jacquard-magenta-pulse 2.8s infinite ease-in-out !important;
}

/* Wariant Jacquard - żółty */
.neon-title.neon-jacquard-yellow {
  font-family: 'Jacquard 12 Charted', cursive !important;
  font-size: clamp(34px, 7.2vw, 104px);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
  display: block;
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 6px rgba(255, 255, 0, .95),
    0 0 11px rgba(255, 215, 0, .9),
    0 0 18px rgba(255, 255, 0, .85),
    0 0 27px rgba(255, 215, 0, .8),
    0 0 38px rgba(255, 255, 0, .75),
    0 0 51px rgba(255, 215, 0, .7) !important;
  filter: 
    drop-shadow(0 0 4px rgba(255,255,0,.8)) 
    drop-shadow(0 0 9px rgba(255,215,0,.7))
    drop-shadow(0 0 16px rgba(255,255,0,.6)) !important;
  animation: neon-jacquard-yellow-pulse 2.8s infinite ease-in-out !important;
}

/* Wariant Jacquard - pomarańczowy */
.neon-title.neon-jacquard-orange {
  font-family: 'Jacquard 12 Charted', cursive !important;
  font-size: clamp(34px, 7.2vw, 104px);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
  display: block;
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 6px rgba(255, 140, 0, .95),
    0 0 11px rgba(255, 165, 0, .9),
    0 0 18px rgba(255, 140, 0, .85),
    0 0 27px rgba(255, 165, 0, .8),
    0 0 38px rgba(255, 140, 0, .75),
    0 0 51px rgba(255, 165, 0, .7) !important;
  filter: 
    drop-shadow(0 0 4px rgba(255,140,0,.8)) 
    drop-shadow(0 0 9px rgba(255,165,0,.7))
    drop-shadow(0 0 16px rgba(255,140,0,.6)) !important;
  animation: neon-jacquard-orange-pulse 2.8s infinite ease-in-out !important;
}

/* Nowy styl neonu - klasyczny neon z lat 80. w różnych wariantach kolorystycznych */
.neon-title.neon-classic {
  font-family: var(--font-decorative);
  font-size: clamp(34px, 7.2vw, 104px);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
  display: block;
  animation: neon-classic-pulse 2.5s infinite ease-in-out;
}

/* Wariant niebieski - klasyczny neon niebieski */
.neon-title.neon-classic-blue {
  text-shadow:
    0 0 4px rgba(255,255,255,1),
    0 0 8px rgba(0, 191, 255, 1),
    0 0 12px rgba(0, 191, 255, .95),
    0 0 20px rgba(0, 191, 255, .9),
    0 0 30px rgba(0, 191, 255, .85),
    0 0 42px rgba(0, 191, 255, .8),
    0 0 56px rgba(0, 191, 255, .75),
    0 0 72px rgba(0, 191, 255, .7) !important;
  filter: 
    drop-shadow(0 0 5px rgba(0,191,255,.8)) 
    drop-shadow(0 0 12px rgba(0,191,255,.7))
    drop-shadow(0 0 20px rgba(0,191,255,.6))
    drop-shadow(0 0 30px rgba(0,191,255,.5)) !important;
  animation: neon-classic-blue-pulse 2.5s infinite ease-in-out !important;
}

/* Wariant różowy - klasyczny neon różowy */
.neon-title.neon-classic-pink {
  text-shadow:
    0 0 4px rgba(255,255,255,1),
    0 0 8px rgba(255, 20, 147, 1),
    0 0 12px rgba(255, 20, 147, .95),
    0 0 20px rgba(255, 20, 147, .9),
    0 0 30px rgba(255, 20, 147, .85),
    0 0 42px rgba(255, 20, 147, .8),
    0 0 56px rgba(255, 20, 147, .75),
    0 0 72px rgba(255, 20, 147, .7) !important;
  filter: 
    drop-shadow(0 0 5px rgba(255,20,147,.8)) 
    drop-shadow(0 0 12px rgba(255,20,147,.7))
    drop-shadow(0 0 20px rgba(255,20,147,.6))
    drop-shadow(0 0 30px rgba(255,20,147,.5)) !important;
  animation: neon-classic-pink-pulse 2.5s infinite ease-in-out !important;
}

/* Wariant fioletowy - klasyczny neon fioletowy */
.neon-title.neon-classic-purple {
  text-shadow:
    0 0 4px rgba(255,255,255,1),
    0 0 8px rgba(138, 43, 226, 1),
    0 0 12px rgba(138, 43, 226, .95),
    0 0 20px rgba(138, 43, 226, .9),
    0 0 30px rgba(138, 43, 226, .85),
    0 0 42px rgba(138, 43, 226, .8),
    0 0 56px rgba(138, 43, 226, .75),
    0 0 72px rgba(138, 43, 226, .7) !important;
  filter: 
    drop-shadow(0 0 5px rgba(138,43,226,.8)) 
    drop-shadow(0 0 12px rgba(138,43,226,.7))
    drop-shadow(0 0 20px rgba(138,43,226,.6))
    drop-shadow(0 0 30px rgba(138,43,226,.5)) !important;
  animation: neon-classic-purple-pulse 2.5s infinite ease-in-out !important;
}

/* Wariant pomarańczowy - klasyczny neon pomarańczowy */
.neon-title.neon-classic-orange {
  text-shadow:
    0 0 4px rgba(255,255,255,1),
    0 0 8px rgba(255, 140, 0, 1),
    0 0 12px rgba(255, 140, 0, .95),
    0 0 20px rgba(255, 140, 0, .9),
    0 0 30px rgba(255, 140, 0, .85),
    0 0 42px rgba(255, 140, 0, .8),
    0 0 56px rgba(255, 140, 0, .75),
    0 0 72px rgba(255, 140, 0, .7) !important;
  filter: 
    drop-shadow(0 0 5px rgba(255,140,0,.8)) 
    drop-shadow(0 0 12px rgba(255,140,0,.7))
    drop-shadow(0 0 20px rgba(255,140,0,.6))
    drop-shadow(0 0 30px rgba(255,140,0,.5)) !important;
  animation: neon-classic-orange-pulse 2.5s infinite ease-in-out !important;
}

@keyframes neon-flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: .85; }
}

/* Animacje dla nowych wariantów neonów Vice City */
@keyframes neon-flicker-intense {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 6px rgba(0, 255, 255, 1),
      0 0 12px rgba(0, 255, 255, .95),
      0 0 18px rgba(255, 0, 255, .9),
      0 0 26px rgba(255, 0, 255, .85),
      0 0 36px rgba(0, 255, 255, .8),
      0 0 48px rgba(255, 0, 255, .75),
      0 0 60px rgba(0, 255, 255, .7);
  }
  25%, 75% { 
    opacity: 0.92; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 6px rgba(0, 255, 255, .95),
      0 0 12px rgba(0, 255, 255, .9),
      0 0 18px rgba(255, 0, 255, .85),
      0 0 26px rgba(255, 0, 255, .8),
      0 0 36px rgba(0, 255, 255, .75),
      0 0 48px rgba(255, 0, 255, .7),
      0 0 60px rgba(0, 255, 255, .65);
  }
  50% { 
    opacity: 0.88; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 6px rgba(0, 255, 255, .9),
      0 0 12px rgba(0, 255, 255, .85),
      0 0 18px rgba(255, 0, 255, .8),
      0 0 26px rgba(255, 0, 255, .75),
      0 0 36px rgba(0, 255, 255, .7),
      0 0 48px rgba(255, 0, 255, .65),
      0 0 60px rgba(0, 255, 255, .6);
  }
}

@keyframes neon-flicker-soft {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 2px rgba(255,255,255,.9),
      0 0 4px rgba(0, 255, 255, .7),
      0 0 8px rgba(255, 0, 255, .6),
      0 0 12px rgba(0, 255, 255, .5),
      0 0 18px rgba(255, 0, 255, .4);
  }
  50% { 
    opacity: 0.94; 
    text-shadow:
      0 0 2px rgba(255,255,255,.85),
      0 0 4px rgba(0, 255, 255, .65),
      0 0 8px rgba(255, 0, 255, .55),
      0 0 12px rgba(0, 255, 255, .45),
      0 0 18px rgba(255, 0, 255, .35);
  }
}


@keyframes neon-glow {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 5px rgba(0, 255, 255, .95),
      0 0 10px rgba(0, 255, 255, .9),
      0 0 16px rgba(255, 0, 255, .85),
      0 0 24px rgba(255, 0, 255, .8),
      0 0 34px rgba(0, 255, 255, .75),
      0 0 46px rgba(255, 0, 255, .7),
      0 0 60px rgba(0, 255, 255, .65);
  }
  33%, 67% { 
    opacity: 0.93; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 5px rgba(0, 255, 255, .9),
      0 0 10px rgba(0, 255, 255, .85),
      0 0 16px rgba(255, 0, 255, .8),
      0 0 24px rgba(255, 0, 255, .75),
      0 0 34px rgba(0, 255, 255, .7),
      0 0 46px rgba(255, 0, 255, .65),
      0 0 60px rgba(0, 255, 255, .6);
  }
  50% { 
    opacity: 0.87; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 5px rgba(0, 255, 255, .85),
      0 0 10px rgba(0, 255, 255, .8),
      0 0 16px rgba(255, 0, 255, .75),
      0 0 24px rgba(255, 0, 255, .7),
      0 0 34px rgba(0, 255, 255, .65),
      0 0 46px rgba(255, 0, 255, .6),
      0 0 60px rgba(0, 255, 255, .55);
  }
}

@keyframes neon-cyber {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0, 255, 255, .95),
      0 0 8px rgba(0, 255, 255, .9),
      0 0 12px rgba(255, 20, 147, .85),
      0 0 18px rgba(0, 255, 255, .8),
      0 0 26px rgba(255, 20, 147, .75),
      0 0 36px rgba(0, 255, 255, .7),
      0 0 48px rgba(255, 20, 147, .65);
  }
  20%, 80% { 
    opacity: 0.91; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0, 255, 255, .9),
      0 0 8px rgba(0, 255, 255, .85),
      0 0 12px rgba(255, 20, 147, .8),
      0 0 18px rgba(0, 255, 255, .75),
      0 0 26px rgba(255, 20, 147, .7),
      0 0 36px rgba(0, 255, 255, .65),
      0 0 48px rgba(255, 20, 147, .6);
  }
  50% { 
    opacity: 0.86; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0, 255, 255, .85),
      0 0 8px rgba(0, 255, 255, .8),
      0 0 12px rgba(255, 20, 147, .75),
      0 0 18px rgba(0, 255, 255, .7),
      0 0 26px rgba(255, 20, 147, .65),
      0 0 36px rgba(0, 255, 255, .6),
      0 0 48px rgba(255, 20, 147, .55);
  }
}

@keyframes neon-retro {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 6px rgba(255, 105, 180, .95),
      0 0 12px rgba(0, 191, 255, .9),
      0 0 20px rgba(255, 105, 180, .85),
      0 0 30px rgba(0, 191, 255, .8),
      0 0 42px rgba(255, 105, 180, .75);
  }
  30%, 70% { 
    opacity: 0.92; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 6px rgba(255, 105, 180, .9),
      0 0 12px rgba(0, 191, 255, .85),
      0 0 20px rgba(255, 105, 180, .8),
      0 0 30px rgba(0, 191, 255, .75),
      0 0 42px rgba(255, 105, 180, .7);
  }
  50% { 
    opacity: 0.88; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 6px rgba(255, 105, 180, .85),
      0 0 12px rgba(0, 191, 255, .8),
      0 0 20px rgba(255, 105, 180, .75),
      0 0 30px rgba(0, 191, 255, .7),
      0 0 42px rgba(255, 105, 180, .65);
  }
}

@keyframes neon-arcade {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(255, 0, 255, .95),
      0 0 8px rgba(0, 255, 255, .9),
      0 0 14px rgba(255, 0, 255, .85),
      0 0 22px rgba(0, 255, 255, .8),
      0 0 32px rgba(255, 0, 255, .75),
      0 0 44px rgba(0, 255, 255, .7),
      0 0 58px rgba(255, 0, 255, .65);
  }
  22%, 78% { 
    opacity: 0.93; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(255, 0, 255, .9),
      0 0 8px rgba(0, 255, 255, .85),
      0 0 14px rgba(255, 0, 255, .8),
      0 0 22px rgba(0, 255, 255, .75),
      0 0 32px rgba(255, 0, 255, .7),
      0 0 44px rgba(0, 255, 255, .65),
      0 0 58px rgba(255, 0, 255, .6);
  }
  50% { 
    opacity: 0.89; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(255, 0, 255, .85),
      0 0 8px rgba(0, 255, 255, .8),
      0 0 14px rgba(255, 0, 255, .75),
      0 0 22px rgba(0, 255, 255, .7),
      0 0 32px rgba(255, 0, 255, .65),
      0 0 44px rgba(0, 255, 255, .6),
      0 0 58px rgba(255, 0, 255, .55);
  }
}
@keyframes neon-flicker-vice {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0, 255, 255, .9),
      0 0 8px rgba(0, 255, 255, .85),
      0 0 12px rgba(255, 0, 255, .7),
      0 0 18px rgba(255, 0, 255, .6),
      0 0 24px rgba(0, 255, 255, .5),
      0 0 32px rgba(255, 0, 255, .4);
  }
  50% { 
    opacity: 0.95; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0, 255, 255, .8),
      0 0 8px rgba(0, 255, 255, .75),
      0 0 12px rgba(255, 0, 255, .65),
      0 0 18px rgba(255, 0, 255, .55),
      0 0 24px rgba(0, 255, 255, .45),
      0 0 32px rgba(255, 0, 255, .35);
  }
}

/* Animacja dla stylu neonu lat 80. - intensywne miganie z charakterystycznym efektem */
@keyframes neon-flicker-80s {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 6px rgba(0, 255, 255, 1),
      0 0 10px rgba(255, 20, 147, .95),
      0 0 16px rgba(0, 255, 255, .9),
      0 0 24px rgba(255, 20, 147, .85),
      0 0 34px rgba(0, 255, 255, .8),
      0 0 46px rgba(255, 20, 147, .75),
      0 0 60px rgba(0, 255, 255, .7),
      0 0 76px rgba(255, 20, 147, .65),
      0 0 94px rgba(0, 255, 255, .6),
      0 0 114px rgba(255, 20, 147, .55);
    filter: 
      drop-shadow(0 0 4px rgba(0,255,255,.8)) 
      drop-shadow(0 0 8px rgba(255,20,147,.7)) 
      drop-shadow(0 0 14px rgba(0,255,255,.6))
      drop-shadow(0 0 22px rgba(255,20,147,.5))
      drop-shadow(0 0 32px rgba(0,255,255,.4));
  }
  15%, 85% { 
    opacity: .88; 
    text-shadow:
      0 0 3px rgba(255,255,255,.95),
      0 0 6px rgba(0, 255, 255, .9),
      0 0 10px rgba(255, 20, 147, .85),
      0 0 16px rgba(0, 255, 255, .8),
      0 0 24px rgba(255, 20, 147, .75),
      0 0 34px rgba(0, 255, 255, .7),
      0 0 46px rgba(255, 20, 147, .65),
      0 0 60px rgba(0, 255, 255, .6),
      0 0 76px rgba(255, 20, 147, .55),
      0 0 94px rgba(0, 255, 255, .5),
      0 0 114px rgba(255, 20, 147, .45);
    filter: 
      drop-shadow(0 0 3px rgba(0,255,255,.7)) 
      drop-shadow(0 0 7px rgba(255,20,147,.6)) 
      drop-shadow(0 0 12px rgba(0,255,255,.5))
      drop-shadow(0 0 20px rgba(255,20,147,.4))
      drop-shadow(0 0 30px rgba(0,255,255,.35));
  }
  30%, 70% { 
    opacity: .95; 
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 6px rgba(0, 255, 255, .95),
      0 0 10px rgba(255, 20, 147, .9),
      0 0 16px rgba(0, 255, 255, .85),
      0 0 24px rgba(255, 20, 147, .8),
      0 0 34px rgba(0, 255, 255, .75),
      0 0 46px rgba(255, 20, 147, .7),
      0 0 60px rgba(0, 255, 255, .65),
      0 0 76px rgba(255, 20, 147, .6),
      0 0 94px rgba(0, 255, 255, .55),
      0 0 114px rgba(255, 20, 147, .5);
    filter: 
      drop-shadow(0 0 4px rgba(0,255,255,.75)) 
      drop-shadow(0 0 8px rgba(255,20,147,.65)) 
      drop-shadow(0 0 14px rgba(0,255,255,.55))
      drop-shadow(0 0 22px rgba(255,20,147,.45))
      drop-shadow(0 0 32px rgba(0,255,255,.38));
  }
  50% { 
    opacity: .82; 
    text-shadow:
      0 0 3px rgba(255,255,255,.9),
      0 0 6px rgba(0, 255, 255, .85),
      0 0 10px rgba(255, 20, 147, .8),
      0 0 16px rgba(0, 255, 255, .75),
      0 0 24px rgba(255, 20, 147, .7),
      0 0 34px rgba(0, 255, 255, .65),
      0 0 46px rgba(255, 20, 147, .6),
      0 0 60px rgba(0, 255, 255, .55),
      0 0 76px rgba(255, 20, 147, .5),
      0 0 94px rgba(0, 255, 255, .45),
      0 0 114px rgba(255, 20, 147, .4);
    filter: 
      drop-shadow(0 0 3px rgba(0,255,255,.65)) 
      drop-shadow(0 0 6px rgba(255,20,147,.55)) 
      drop-shadow(0 0 11px rgba(0,255,255,.45))
      drop-shadow(0 0 18px rgba(255,20,147,.35))
      drop-shadow(0 0 28px rgba(0,255,255,.3));
  }
}

/* Więcej wariantów neonów Vice City */
.neon-vice-1 {
  font-family: 'Bungee Shade', 'Bungee', cursive !important;
  color: #fff !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 4px rgba(0, 255, 255, .95),
    0 0 8px rgba(0, 255, 255, .9),
    0 0 12px rgba(255, 0, 255, .75),
    0 0 18px rgba(255, 0, 255, .65),
    0 0 24px rgba(0, 255, 255, .55),
    0 0 32px rgba(255, 0, 255, .45) !important;
  filter: drop-shadow(0 0 4px rgba(0,255,255,.6)) drop-shadow(0 0 8px rgba(255,0,255,.5)) !important;
  animation: neon-flicker-vice-1 2.3s infinite ease-in-out !important;
}

.neon-vice-2 {
  font-family: 'Bungee Shade', 'Bungee', cursive !important;
  color: #fff !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 5px rgba(255, 0, 255, .95),
    0 0 10px rgba(255, 0, 255, .9),
    0 0 15px rgba(0, 255, 255, .8),
    0 0 20px rgba(0, 255, 255, .7),
    0 0 28px rgba(255, 0, 255, .6),
    0 0 36px rgba(0, 255, 255, .5) !important;
  filter: drop-shadow(0 0 5px rgba(255,0,255,.6)) drop-shadow(0 0 10px rgba(0,255,255,.5)) !important;
  animation: neon-flicker-vice-2 2.7s infinite ease-in-out !important;
}

.neon-vice-3 {
  font-family: 'Bungee Shade', 'Bungee', cursive !important;
  color: #fff !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 6px rgba(0, 255, 255, .95),
    0 0 12px rgba(255, 20, 147, .9),
    0 0 18px rgba(0, 255, 255, .8),
    0 0 24px rgba(255, 20, 147, .7),
    0 0 32px rgba(0, 255, 255, .6),
    0 0 40px rgba(255, 20, 147, .5) !important;
  filter: drop-shadow(0 0 6px rgba(0,255,255,.6)) drop-shadow(0 0 12px rgba(255,20,147,.5)) !important;
  animation: neon-flicker-vice-3 2.4s infinite ease-in-out !important;
}

.neon-vice-4 {
  font-family: 'Bungee Shade', 'Bungee', cursive !important;
  color: #fff !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 5px rgba(255, 105, 180, .95),
    0 0 10px rgba(0, 191, 255, .9),
    0 0 15px rgba(255, 105, 180, .85),
    0 0 22px rgba(0, 191, 255, .75),
    0 0 30px rgba(255, 105, 180, .65),
    0 0 38px rgba(0, 191, 255, .55) !important;
  filter: drop-shadow(0 0 5px rgba(255,105,180,.6)) drop-shadow(0 0 10px rgba(0,191,255,.5)) !important;
  animation: neon-flicker-vice-4 2.6s infinite ease-in-out !important;
}

.neon-vice-5 {
  font-family: 'Bungee Shade', 'Bungee', cursive !important;
  color: #fff !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 4px rgba(0, 255, 255, .95),
    0 0 9px rgba(255, 0, 255, .9),
    0 0 14px rgba(0, 255, 255, .85),
    0 0 20px rgba(255, 0, 255, .75),
    0 0 28px rgba(0, 255, 255, .65),
    0 0 36px rgba(255, 0, 255, .55) !important;
  filter: drop-shadow(0 0 4px rgba(0,255,255,.6)) drop-shadow(0 0 9px rgba(255,0,255,.5)) !important;
  animation: neon-flicker-vice-5 2.8s infinite ease-in-out !important;
}

.neon-vice-6 {
  font-family: 'Bungee Shade', 'Bungee', cursive !important;
  color: #fff !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 5px rgba(255, 0, 255, .95),
    0 0 11px rgba(0, 255, 255, .9),
    0 0 17px rgba(255, 0, 255, .85),
    0 0 24px rgba(0, 255, 255, .75),
    0 0 32px rgba(255, 0, 255, .65),
    0 0 42px rgba(0, 255, 255, .55) !important;
  filter: drop-shadow(0 0 5px rgba(255,0,255,.6)) drop-shadow(0 0 11px rgba(0,255,255,.5)) !important;
  animation: neon-flicker-vice-6 2.5s infinite ease-in-out !important;
}

/* Animacje dla klasycznego stylu neonu */
@keyframes neon-classic-pulse {
  0%, 100% { 
    opacity: 1; 
  }
  50% { 
    opacity: .92; 
  }
}

@keyframes neon-classic-blue-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 4px rgba(255,255,255,1),
      0 0 8px rgba(0, 191, 255, 1),
      0 0 12px rgba(0, 191, 255, .95),
      0 0 20px rgba(0, 191, 255, .9),
      0 0 30px rgba(0, 191, 255, .85),
      0 0 42px rgba(0, 191, 255, .8),
      0 0 56px rgba(0, 191, 255, .75),
      0 0 72px rgba(0, 191, 255, .7);
    filter: 
      drop-shadow(0 0 5px rgba(0,191,255,.8)) 
      drop-shadow(0 0 12px rgba(0,191,255,.7))
      drop-shadow(0 0 20px rgba(0,191,255,.6))
      drop-shadow(0 0 30px rgba(0,191,255,.5));
  }
  50% { 
    opacity: .88; 
    text-shadow:
      0 0 4px rgba(255,255,255,.95),
      0 0 8px rgba(0, 191, 255, .9),
      0 0 12px rgba(0, 191, 255, .85),
      0 0 20px rgba(0, 191, 255, .8),
      0 0 30px rgba(0, 191, 255, .75),
      0 0 42px rgba(0, 191, 255, .7),
      0 0 56px rgba(0, 191, 255, .65),
      0 0 72px rgba(0, 191, 255, .6);
    filter: 
      drop-shadow(0 0 4px rgba(0,191,255,.7)) 
      drop-shadow(0 0 10px rgba(0,191,255,.6))
      drop-shadow(0 0 18px rgba(0,191,255,.5))
      drop-shadow(0 0 28px rgba(0,191,255,.4));
  }
}

@keyframes neon-classic-pink-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 4px rgba(255,255,255,1),
      0 0 8px rgba(255, 20, 147, 1),
      0 0 12px rgba(255, 20, 147, .95),
      0 0 20px rgba(255, 20, 147, .9),
      0 0 30px rgba(255, 20, 147, .85),
      0 0 42px rgba(255, 20, 147, .8),
      0 0 56px rgba(255, 20, 147, .75),
      0 0 72px rgba(255, 20, 147, .7);
    filter: 
      drop-shadow(0 0 5px rgba(255,20,147,.8)) 
      drop-shadow(0 0 12px rgba(255,20,147,.7))
      drop-shadow(0 0 20px rgba(255,20,147,.6))
      drop-shadow(0 0 30px rgba(255,20,147,.5));
  }
  50% { 
    opacity: .88; 
    text-shadow:
      0 0 4px rgba(255,255,255,.95),
      0 0 8px rgba(255, 20, 147, .9),
      0 0 12px rgba(255, 20, 147, .85),
      0 0 20px rgba(255, 20, 147, .8),
      0 0 30px rgba(255, 20, 147, .75),
      0 0 42px rgba(255, 20, 147, .7),
      0 0 56px rgba(255, 20, 147, .65),
      0 0 72px rgba(255, 20, 147, .6);
    filter: 
      drop-shadow(0 0 4px rgba(255,20,147,.7)) 
      drop-shadow(0 0 10px rgba(255,20,147,.6))
      drop-shadow(0 0 18px rgba(255,20,147,.5))
      drop-shadow(0 0 28px rgba(255,20,147,.4));
  }
}

@keyframes neon-classic-purple-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 4px rgba(255,255,255,1),
      0 0 8px rgba(138, 43, 226, 1),
      0 0 12px rgba(138, 43, 226, .95),
      0 0 20px rgba(138, 43, 226, .9),
      0 0 30px rgba(138, 43, 226, .85),
      0 0 42px rgba(138, 43, 226, .8),
      0 0 56px rgba(138, 43, 226, .75),
      0 0 72px rgba(138, 43, 226, .7);
    filter: 
      drop-shadow(0 0 5px rgba(138,43,226,.8)) 
      drop-shadow(0 0 12px rgba(138,43,226,.7))
      drop-shadow(0 0 20px rgba(138,43,226,.6))
      drop-shadow(0 0 30px rgba(138,43,226,.5));
  }
  50% { 
    opacity: .88; 
    text-shadow:
      0 0 4px rgba(255,255,255,.95),
      0 0 8px rgba(138, 43, 226, .9),
      0 0 12px rgba(138, 43, 226, .85),
      0 0 20px rgba(138, 43, 226, .8),
      0 0 30px rgba(138, 43, 226, .75),
      0 0 42px rgba(138, 43, 226, .7),
      0 0 56px rgba(138, 43, 226, .65),
      0 0 72px rgba(138, 43, 226, .6);
    filter: 
      drop-shadow(0 0 4px rgba(138,43,226,.7)) 
      drop-shadow(0 0 10px rgba(138,43,226,.6))
      drop-shadow(0 0 18px rgba(138,43,226,.5))
      drop-shadow(0 0 28px rgba(138,43,226,.4));
  }
}

@keyframes neon-classic-orange-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 4px rgba(255,255,255,1),
      0 0 8px rgba(255, 140, 0, 1),
      0 0 12px rgba(255, 140, 0, .95),
      0 0 20px rgba(255, 140, 0, .9),
      0 0 30px rgba(255, 140, 0, .85),
      0 0 42px rgba(255, 140, 0, .8),
      0 0 56px rgba(255, 140, 0, .75),
      0 0 72px rgba(255, 140, 0, .7);
    filter: 
      drop-shadow(0 0 5px rgba(255,140,0,.8)) 
      drop-shadow(0 0 12px rgba(255,140,0,.7))
      drop-shadow(0 0 20px rgba(255,140,0,.6))
      drop-shadow(0 0 30px rgba(255,140,0,.5));
  }
  50% { 
    opacity: .88; 
    text-shadow:
      0 0 4px rgba(255,255,255,.95),
      0 0 8px rgba(255, 140, 0, .9),
      0 0 12px rgba(255, 140, 0, .85),
      0 0 20px rgba(255, 140, 0, .8),
      0 0 30px rgba(255, 140, 0, .75),
      0 0 42px rgba(255, 140, 0, .7),
      0 0 56px rgba(255, 140, 0, .65),
      0 0 72px rgba(255, 140, 0, .6);
    filter: 
      drop-shadow(0 0 4px rgba(255,140,0,.7)) 
      drop-shadow(0 0 10px rgba(255,140,0,.6))
      drop-shadow(0 0 18px rgba(255,140,0,.5))
      drop-shadow(0 0 28px rgba(255,140,0,.4));
  }
}

/* Animacje dla stylu outline neon */
/* Animacje dla stylu Vampiro One */
@keyframes neon-vampiro-cyan-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 7px rgba(0, 255, 255, .95),
      0 0 12px rgba(0, 255, 255, .9),
      0 0 20px rgba(0, 255, 255, .85),
      0 0 30px rgba(0, 255, 255, .8),
      0 0 42px rgba(0, 255, 255, .75),
      0 0 56px rgba(0, 255, 255, .7);
  }
  50% { 
    opacity: .9; 
    text-shadow:
      0 0 3px rgba(255,255,255,.95),
      0 0 7px rgba(0, 255, 255, .9),
      0 0 12px rgba(0, 255, 255, .85),
      0 0 20px rgba(0, 255, 255, .8),
      0 0 30px rgba(0, 255, 255, .75),
      0 0 42px rgba(0, 255, 255, .7),
      0 0 56px rgba(0, 255, 255, .65);
  }
}

@keyframes neon-vampiro-pink-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 7px rgba(255, 20, 147, .95),
      0 0 12px rgba(255, 0, 255, .9),
      0 0 20px rgba(255, 20, 147, .85),
      0 0 30px rgba(255, 0, 255, .8),
      0 0 42px rgba(255, 20, 147, .75),
      0 0 56px rgba(255, 0, 255, .7);
  }
  50% { 
    opacity: .9; 
    text-shadow:
      0 0 3px rgba(255,255,255,.95),
      0 0 7px rgba(255, 20, 147, .9),
      0 0 12px rgba(255, 0, 255, .85),
      0 0 20px rgba(255, 20, 147, .8),
      0 0 30px rgba(255, 0, 255, .75),
      0 0 42px rgba(255, 20, 147, .7),
      0 0 56px rgba(255, 0, 255, .65);
  }
}

@keyframes neon-vampiro-orange-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 7px rgba(255, 140, 0, .95),
      0 0 12px rgba(255, 20, 147, .9),
      0 0 20px rgba(255, 140, 0, .85),
      0 0 30px rgba(255, 20, 147, .8),
      0 0 42px rgba(255, 140, 0, .75),
      0 0 56px rgba(255, 20, 147, .7);
  }
  50% { 
    opacity: .9; 
    text-shadow:
      0 0 3px rgba(255,255,255,.95),
      0 0 7px rgba(255, 140, 0, .9),
      0 0 12px rgba(255, 20, 147, .85),
      0 0 20px rgba(255, 140, 0, .8),
      0 0 30px rgba(255, 20, 147, .75),
      0 0 42px rgba(255, 140, 0, .7),
      0 0 56px rgba(255, 20, 147, .65);
  }
}

@keyframes neon-vampiro-purple-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 7px rgba(138, 43, 226, .95),
      0 0 12px rgba(255, 0, 255, .9),
      0 0 20px rgba(138, 43, 226, .85),
      0 0 30px rgba(255, 0, 255, .8),
      0 0 42px rgba(138, 43, 226, .75),
      0 0 56px rgba(255, 0, 255, .7);
  }
  50% { 
    opacity: .9; 
    text-shadow:
      0 0 3px rgba(255,255,255,.95),
      0 0 7px rgba(138, 43, 226, .9),
      0 0 12px rgba(255, 0, 255, .85),
      0 0 20px rgba(138, 43, 226, .8),
      0 0 30px rgba(255, 0, 255, .75),
      0 0 42px rgba(138, 43, 226, .7),
      0 0 56px rgba(255, 0, 255, .65);
  }
}

@keyframes neon-vampiro-blue-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 7px rgba(0, 191, 255, .95),
      0 0 12px rgba(30, 144, 255, .9),
      0 0 20px rgba(0, 191, 255, .85),
      0 0 30px rgba(30, 144, 255, .8),
      0 0 42px rgba(0, 191, 255, .75),
      0 0 56px rgba(30, 144, 255, .7);
  }
  50% { 
    opacity: .9; 
    text-shadow:
      0 0 3px rgba(255,255,255,.95),
      0 0 7px rgba(0, 191, 255, .9),
      0 0 12px rgba(30, 144, 255, .85),
      0 0 20px rgba(0, 191, 255, .8),
      0 0 30px rgba(30, 144, 255, .75),
      0 0 42px rgba(0, 191, 255, .7),
      0 0 56px rgba(30, 144, 255, .65);
  }
}

@keyframes neon-vampiro-magenta-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 7px rgba(255, 0, 255, .95),
      0 0 12px rgba(255, 20, 147, .9),
      0 0 20px rgba(255, 0, 255, .85),
      0 0 30px rgba(255, 20, 147, .8),
      0 0 42px rgba(255, 0, 255, .75),
      0 0 56px rgba(255, 20, 147, .7);
  }
  50% { 
    opacity: .9; 
    text-shadow:
      0 0 3px rgba(255,255,255,.95),
      0 0 7px rgba(255, 0, 255, .9),
      0 0 12px rgba(255, 20, 147, .85),
      0 0 20px rgba(255, 0, 255, .8),
      0 0 30px rgba(255, 20, 147, .75),
      0 0 42px rgba(255, 0, 255, .7),
      0 0 56px rgba(255, 20, 147, .65);
  }
}

@keyframes neon-vampiro-yellow-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 7px rgba(255, 255, 0, .95),
      0 0 12px rgba(255, 215, 0, .9),
      0 0 20px rgba(255, 255, 0, .85),
      0 0 30px rgba(255, 215, 0, .8),
      0 0 42px rgba(255, 255, 0, .75),
      0 0 56px rgba(255, 215, 0, .7);
  }
  50% { 
    opacity: .9; 
    text-shadow:
      0 0 3px rgba(255,255,255,.95),
      0 0 7px rgba(255, 255, 0, .9),
      0 0 12px rgba(255, 215, 0, .85),
      0 0 20px rgba(255, 255, 0, .8),
      0 0 30px rgba(255, 215, 0, .75),
      0 0 42px rgba(255, 255, 0, .7),
      0 0 56px rgba(255, 215, 0, .65);
  }
}

@keyframes neon-vampiro-red-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 7px rgba(255, 0, 0, .95),
      0 0 12px rgba(255, 20, 147, .9),
      0 0 20px rgba(255, 0, 0, .85),
      0 0 30px rgba(255, 20, 147, .8),
      0 0 42px rgba(255, 0, 0, .75),
      0 0 56px rgba(255, 20, 147, .7);
  }
  50% { 
    opacity: .9; 
    text-shadow:
      0 0 3px rgba(255,255,255,.95),
      0 0 7px rgba(255, 0, 0, .9),
      0 0 12px rgba(255, 20, 147, .85),
      0 0 20px rgba(255, 0, 0, .8),
      0 0 30px rgba(255, 20, 147, .75),
      0 0 42px rgba(255, 0, 0, .7),
      0 0 56px rgba(255, 20, 147, .65);
  }
}

/* Animacje dla stylu Jacquard 12 Charted */
@keyframes neon-jacquard-cyan-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 6px rgba(0, 255, 255, .95),
      0 0 11px rgba(0, 255, 255, .9),
      0 0 18px rgba(0, 255, 255, .85),
      0 0 27px rgba(0, 255, 255, .8),
      0 0 38px rgba(0, 255, 255, .75),
      0 0 51px rgba(0, 255, 255, .7);
  }
  50% { 
    opacity: .88; 
    text-shadow:
      0 0 3px rgba(255,255,255,.95),
      0 0 6px rgba(0, 255, 255, .9),
      0 0 11px rgba(0, 255, 255, .85),
      0 0 18px rgba(0, 255, 255, .8),
      0 0 27px rgba(0, 255, 255, .75),
      0 0 38px rgba(0, 255, 255, .7),
      0 0 51px rgba(0, 255, 255, .65);
  }
}

@keyframes neon-jacquard-pink-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 6px rgba(255, 20, 147, .95),
      0 0 11px rgba(255, 0, 255, .9),
      0 0 18px rgba(255, 20, 147, .85),
      0 0 27px rgba(255, 0, 255, .8),
      0 0 38px rgba(255, 20, 147, .75),
      0 0 51px rgba(255, 0, 255, .7);
  }
  50% { 
    opacity: .88; 
    text-shadow:
      0 0 3px rgba(255,255,255,.95),
      0 0 6px rgba(255, 20, 147, .9),
      0 0 11px rgba(255, 0, 255, .85),
      0 0 18px rgba(255, 20, 147, .8),
      0 0 27px rgba(255, 0, 255, .75),
      0 0 38px rgba(255, 20, 147, .7),
      0 0 51px rgba(255, 0, 255, .65);
  }
}

@keyframes neon-jacquard-green-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 6px rgba(0, 255, 127, .95),
      0 0 11px rgba(0, 255, 255, .9),
      0 0 18px rgba(0, 255, 127, .85),
      0 0 27px rgba(0, 255, 255, .8),
      0 0 38px rgba(0, 255, 127, .75),
      0 0 51px rgba(0, 255, 255, .7);
  }
  50% { 
    opacity: .88; 
    text-shadow:
      0 0 3px rgba(255,255,255,.95),
      0 0 6px rgba(0, 255, 127, .9),
      0 0 11px rgba(0, 255, 255, .85),
      0 0 18px rgba(0, 255, 127, .8),
      0 0 27px rgba(0, 255, 255, .75),
      0 0 38px rgba(0, 255, 127, .7),
      0 0 51px rgba(0, 255, 255, .65);
  }
}

@keyframes neon-jacquard-purple-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 6px rgba(138, 43, 226, .95),
      0 0 11px rgba(255, 0, 255, .9),
      0 0 18px rgba(138, 43, 226, .85),
      0 0 27px rgba(255, 0, 255, .8),
      0 0 38px rgba(138, 43, 226, .75),
      0 0 51px rgba(255, 0, 255, .7);
  }
  50% { 
    opacity: .88; 
    text-shadow:
      0 0 3px rgba(255,255,255,.95),
      0 0 6px rgba(138, 43, 226, .9),
      0 0 11px rgba(255, 0, 255, .85),
      0 0 18px rgba(138, 43, 226, .8),
      0 0 27px rgba(255, 0, 255, .75),
      0 0 38px rgba(138, 43, 226, .7),
      0 0 51px rgba(255, 0, 255, .65);
  }
}

@keyframes neon-jacquard-blue-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 6px rgba(0, 191, 255, .95),
      0 0 11px rgba(30, 144, 255, .9),
      0 0 18px rgba(0, 191, 255, .85),
      0 0 27px rgba(30, 144, 255, .8),
      0 0 38px rgba(0, 191, 255, .75),
      0 0 51px rgba(30, 144, 255, .7);
  }
  50% { 
    opacity: .88; 
    text-shadow:
      0 0 3px rgba(255,255,255,.95),
      0 0 6px rgba(0, 191, 255, .9),
      0 0 11px rgba(30, 144, 255, .85),
      0 0 18px rgba(0, 191, 255, .8),
      0 0 27px rgba(30, 144, 255, .75),
      0 0 38px rgba(0, 191, 255, .7),
      0 0 51px rgba(30, 144, 255, .65);
  }
}

@keyframes neon-jacquard-magenta-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 6px rgba(255, 0, 255, .95),
      0 0 11px rgba(255, 20, 147, .9),
      0 0 18px rgba(255, 0, 255, .85),
      0 0 27px rgba(255, 20, 147, .8),
      0 0 38px rgba(255, 0, 255, .75),
      0 0 51px rgba(255, 20, 147, .7);
  }
  50% { 
    opacity: .88; 
    text-shadow:
      0 0 3px rgba(255,255,255,.95),
      0 0 6px rgba(255, 0, 255, .9),
      0 0 11px rgba(255, 20, 147, .85),
      0 0 18px rgba(255, 0, 255, .8),
      0 0 27px rgba(255, 20, 147, .75),
      0 0 38px rgba(255, 0, 255, .7),
      0 0 51px rgba(255, 20, 147, .65);
  }
}

@keyframes neon-jacquard-yellow-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 6px rgba(255, 255, 0, .95),
      0 0 11px rgba(255, 215, 0, .9),
      0 0 18px rgba(255, 255, 0, .85),
      0 0 27px rgba(255, 215, 0, .8),
      0 0 38px rgba(255, 255, 0, .75),
      0 0 51px rgba(255, 215, 0, .7);
  }
  50% { 
    opacity: .88; 
    text-shadow:
      0 0 3px rgba(255,255,255,.95),
      0 0 6px rgba(255, 255, 0, .9),
      0 0 11px rgba(255, 215, 0, .85),
      0 0 18px rgba(255, 255, 0, .8),
      0 0 27px rgba(255, 215, 0, .75),
      0 0 38px rgba(255, 255, 0, .7),
      0 0 51px rgba(255, 215, 0, .65);
  }
}

@keyframes neon-jacquard-orange-pulse {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 6px rgba(255, 140, 0, .95),
      0 0 11px rgba(255, 165, 0, .9),
      0 0 18px rgba(255, 140, 0, .85),
      0 0 27px rgba(255, 165, 0, .8),
      0 0 38px rgba(255, 140, 0, .75),
      0 0 51px rgba(255, 165, 0, .7);
  }
  50% { 
    opacity: .88; 
    text-shadow:
      0 0 3px rgba(255,255,255,.95),
      0 0 6px rgba(255, 140, 0, .9),
      0 0 11px rgba(255, 165, 0, .85),
      0 0 18px rgba(255, 140, 0, .8),
      0 0 27px rgba(255, 165, 0, .75),
      0 0 38px rgba(255, 140, 0, .7),
      0 0 51px rgba(255, 165, 0, .65);
  }
}

/* Animacje flicker dla różnych wariantów */
@keyframes neon-flicker-vice-1 {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0, 255, 255, .95),
      0 0 8px rgba(0, 255, 255, .9),
      0 0 12px rgba(255, 0, 255, .75),
      0 0 18px rgba(255, 0, 255, .65),
      0 0 24px rgba(0, 255, 255, .55),
      0 0 32px rgba(255, 0, 255, .45);
  }
  20%, 80% { 
    opacity: 0.92; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0, 255, 255, .85),
      0 0 8px rgba(0, 255, 255, .8),
      0 0 12px rgba(255, 0, 255, .7),
      0 0 18px rgba(255, 0, 255, .6),
      0 0 24px rgba(0, 255, 255, .5),
      0 0 32px rgba(255, 0, 255, .4);
  }
  50% { 
    opacity: 0.88; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0, 255, 255, .75),
      0 0 8px rgba(0, 255, 255, .7),
      0 0 12px rgba(255, 0, 255, .65),
      0 0 18px rgba(255, 0, 255, .55),
      0 0 24px rgba(0, 255, 255, .45),
      0 0 32px rgba(255, 0, 255, .35);
  }
}

@keyframes neon-flicker-vice-2 {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 5px rgba(255, 0, 255, .95),
      0 0 10px rgba(255, 0, 255, .9),
      0 0 15px rgba(0, 255, 255, .8),
      0 0 20px rgba(0, 255, 255, .7),
      0 0 28px rgba(255, 0, 255, .6),
      0 0 36px rgba(0, 255, 255, .5);
  }
  25%, 75% { 
    opacity: 0.93; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 5px rgba(255, 0, 255, .9),
      0 0 10px rgba(255, 0, 255, .85),
      0 0 15px rgba(0, 255, 255, .75),
      0 0 20px rgba(0, 255, 255, .65),
      0 0 28px rgba(255, 0, 255, .55),
      0 0 36px rgba(0, 255, 255, .45);
  }
  50% { 
    opacity: 0.9; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 5px rgba(255, 0, 255, .85),
      0 0 10px rgba(255, 0, 255, .8),
      0 0 15px rgba(0, 255, 255, .7),
      0 0 20px rgba(0, 255, 255, .6),
      0 0 28px rgba(255, 0, 255, .5),
      0 0 36px rgba(0, 255, 255, .4);
  }
}

@keyframes neon-flicker-vice-3 {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 6px rgba(0, 255, 255, .95),
      0 0 12px rgba(255, 20, 147, .9),
      0 0 18px rgba(0, 255, 255, .8),
      0 0 24px rgba(255, 20, 147, .7),
      0 0 32px rgba(0, 255, 255, .6),
      0 0 40px rgba(255, 20, 147, .5);
  }
  30%, 70% { 
    opacity: 0.94; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 6px rgba(0, 255, 255, .9),
      0 0 12px rgba(255, 20, 147, .85),
      0 0 18px rgba(0, 255, 255, .75),
      0 0 24px rgba(255, 20, 147, .65),
      0 0 32px rgba(0, 255, 255, .55),
      0 0 40px rgba(255, 20, 147, .45);
  }
  50% { 
    opacity: 0.89; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 6px rgba(0, 255, 255, .85),
      0 0 12px rgba(255, 20, 147, .8),
      0 0 18px rgba(0, 255, 255, .7),
      0 0 24px rgba(255, 20, 147, .6),
      0 0 32px rgba(0, 255, 255, .5),
      0 0 40px rgba(255, 20, 147, .4);
  }
}

@keyframes neon-flicker-vice-4 {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 5px rgba(255, 105, 180, .95),
      0 0 10px rgba(0, 191, 255, .9),
      0 0 15px rgba(255, 105, 180, .85),
      0 0 22px rgba(0, 191, 255, .75),
      0 0 30px rgba(255, 105, 180, .65),
      0 0 38px rgba(0, 191, 255, .55);
  }
  22%, 78% { 
    opacity: 0.91; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 5px rgba(255, 105, 180, .9),
      0 0 10px rgba(0, 191, 255, .85),
      0 0 15px rgba(255, 105, 180, .8),
      0 0 22px rgba(0, 191, 255, .7),
      0 0 30px rgba(255, 105, 180, .6),
      0 0 38px rgba(0, 191, 255, .5);
  }
  50% { 
    opacity: 0.87; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 5px rgba(255, 105, 180, .85),
      0 0 10px rgba(0, 191, 255, .8),
      0 0 15px rgba(255, 105, 180, .75),
      0 0 22px rgba(0, 191, 255, .65),
      0 0 30px rgba(255, 105, 180, .55),
      0 0 38px rgba(0, 191, 255, .45);
  }
}

@keyframes neon-flicker-vice-5 {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0, 255, 255, .95),
      0 0 9px rgba(255, 0, 255, .9),
      0 0 14px rgba(0, 255, 255, .85),
      0 0 20px rgba(255, 0, 255, .75),
      0 0 28px rgba(0, 255, 255, .65),
      0 0 36px rgba(255, 0, 255, .55);
  }
  18%, 82% { 
    opacity: 0.92; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0, 255, 255, .9),
      0 0 9px rgba(255, 0, 255, .85),
      0 0 14px rgba(0, 255, 255, .8),
      0 0 20px rgba(255, 0, 255, .7),
      0 0 28px rgba(0, 255, 255, .6),
      0 0 36px rgba(255, 0, 255, .5);
  }
  50% { 
    opacity: 0.88; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0, 255, 255, .85),
      0 0 9px rgba(255, 0, 255, .8),
      0 0 14px rgba(0, 255, 255, .75),
      0 0 20px rgba(255, 0, 255, .65),
      0 0 28px rgba(0, 255, 255, .55),
      0 0 36px rgba(255, 0, 255, .45);
  }
}

@keyframes neon-flicker-vice-6 {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 5px rgba(255, 0, 255, .95),
      0 0 11px rgba(0, 255, 255, .9),
      0 0 17px rgba(255, 0, 255, .85),
      0 0 24px rgba(0, 255, 255, .75),
      0 0 32px rgba(255, 0, 255, .65),
      0 0 42px rgba(0, 255, 255, .55);
  }
  24%, 76% { 
    opacity: 0.93; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 5px rgba(255, 0, 255, .9),
      0 0 11px rgba(0, 255, 255, .85),
      0 0 17px rgba(255, 0, 255, .8),
      0 0 24px rgba(0, 255, 255, .7),
      0 0 32px rgba(255, 0, 255, .6),
      0 0 42px rgba(0, 255, 255, .5);
  }
  50% { 
    opacity: 0.89; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 5px rgba(255, 0, 255, .85),
      0 0 11px rgba(0, 255, 255, .8),
      0 0 17px rgba(255, 0, 255, .75),
      0 0 24px rgba(0, 255, 255, .65),
      0 0 32px rgba(255, 0, 255, .55),
      0 0 42px rgba(0, 255, 255, .45);
  }
}

.section { padding: 64px 0; }
.section.alt { padding: 64px 0; }
.section-head { margin: 0 0 24px; }
.section-head h2 { font-size: clamp(24px, 3vw, 36px); margin: 0 0 6px; }
.section-head h2::after { content: ""; display: block; width: 90px; height: 4px; margin-top: 10px; border-radius: 2px; background: linear-gradient(90deg, var(--accent-yellow), var(--accent-pink), var(--accent-blue)); }
.section-head p { color: var(--muted); margin: 0; }

.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
/* Override dla gridu apartamentów na mobile */
@media (max-width: 799px) {
  #apartments-grid.grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* Filtry na stronie listy apartamentów — kompaktowo, spójnie ze stylistyką (bez zieleni) */
.apartments-filters-wrap {
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 1px solid var(--glass-stroke);
  background: var(--glass-bg);
}
.apartments-filters-wrap .apartments-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  padding: 0;
  margin-bottom: 0;
}
.apartments-filters-wrap .apartments-filters .filter-group {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}
.apartments-filters-wrap .apartments-filters .filter-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin: 0;
  display: inline;
  white-space: nowrap;
}
.apartments-filters-wrap .apartments-filters .filter-group:not(.filter-checks) .filter-label { margin-right: 4px; }
.apartments-filters-wrap .apartments-filters .filter-checks {
  flex-direction: row;
  gap: 12px;
}
.apartments-filters-wrap .apartments-filters .filter-check {
  font-size: 13px;
  color: var(--fg);
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.apartments-filters-wrap .apartments-filters .filter-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--fg);
  cursor: pointer;
}
.apartments-filters-wrap .apartments-filters select {
  min-width: 72px;
  padding: 6px 10px;
  font-size: 13px;
  border: 1px solid var(--glass-stroke);
  border-radius: 8px;
  background: rgba(255,255,255,0.85);
  color: var(--fg);
  cursor: pointer;
}
.apartments-filters-result {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 799px) {
  .apartments-filters-wrap { padding: 10px 12px; }
  .apartments-filters-wrap .apartments-filters { flex-direction: column; align-items: stretch; gap: 10px; }
  .apartments-filters-wrap .apartments-filters .filter-group { width: 100%; }
  .apartments-filters-wrap .apartments-filters .filter-label { display: block; margin-right: 0; }
  .apartments-filters-wrap .apartments-filters .filter-checks { flex-direction: column; align-items: flex-start; }
}

.card { padding: 16px; }

/* Nowoczesne style dla strony apartamentu */
.apartment-description {
  margin-bottom: 48px;
}
.description-content {
  max-width: 800px;
  margin: 0 auto;
}
.description-text {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  color: var(--muted);
  margin-top: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin: 0 0 24px 0;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Neonowe tytuły sekcji - Vice City style dla apartamentu DOKI */
.neon-section-title {
  font-family: 'Bungee Shade', 'Bungee', cursive !important;
  font-size: clamp(20px, 3vw, 32px) !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  line-height: 1.2 !important;
  margin: 0 0 24px 0 !important;
  color: #fff !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 4px rgba(0, 255, 255, .9),
    0 0 8px rgba(0, 255, 255, .85),
    0 0 12px rgba(255, 0, 255, .7),
    0 0 18px rgba(255, 0, 255, .6),
    0 0 24px rgba(0, 255, 255, .5),
    0 0 32px rgba(255, 0, 255, .4) !important;
  filter: drop-shadow(0 0 4px rgba(0,255,255,.5)) drop-shadow(0 0 8px rgba(255,0,255,.4)) !important;
  animation: neon-flicker-vice 2.5s infinite ease-in-out !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
}
.apartment-neon-small {
  font-size: clamp(18px, 2.5vw, 28px) !important;
}
/* Ocean style neon dla Seaside */
.apartment-neon-ocean {
  font-family: var(--font-decorative) !important;
  color: #fff !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 6px rgba(64,224,208,.95),
    0 0 12px rgba(0,191,255,.85),
    0 0 18px rgba(0,191,255,.7),
    0 0 24px rgba(64,224,208,.6) !important;
  filter: drop-shadow(0 0 4px rgba(64,224,208,.5)) drop-shadow(0 0 8px rgba(0,191,255,.4)) !important;
  animation: neon-flicker-ocean 3s infinite ease-in-out !important;
}
.apartment-neon-ocean-small {
  font-family: var(--font-decorative) !important;
  color: #fff !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 4px rgba(64,224,208,.95),
    0 0 8px rgba(0,191,255,.85),
    0 0 12px rgba(0,191,255,.7),
    0 0 16px rgba(64,224,208,.6) !important;
  filter: drop-shadow(0 0 3px rgba(64,224,208,.5)) drop-shadow(0 0 6px rgba(0,191,255,.4)) !important;
  animation: neon-flicker-ocean 3s infinite ease-in-out !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
}

/* Gold style neon dla Bastion Wałowa - pomarańczowy/cyjan z czcionką Neonderthaw */
.neon-title.apartment-neon.apartment-neon-gold,
#apartment-neon-title.apartment-neon.apartment-neon-gold,
.apartment-neon.apartment-neon-gold {
  font-family: 'Neonderthaw', cursive !important;
  font-size: clamp(18px, 3.5vw, 42px) !important;
  color: #fff !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 6px rgba(255,140,0,.95),
    0 0 12px rgba(0,191,255,.85),
    0 0 18px rgba(255,140,0,.7),
    0 0 24px rgba(0,191,255,.6),
    0 0 32px rgba(255,140,0,.5) !important;
  filter: drop-shadow(0 0 4px rgba(255,140,0,.5)) drop-shadow(0 0 8px rgba(0,191,255,.4)) !important;
  animation: neon-flicker-gold 3s infinite ease-in-out !important;
}

@keyframes neon-flicker-gold {
  0%, 100% { 
    opacity: 1;
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 6px rgba(255,140,0,.95),
      0 0 12px rgba(0,191,255,.85),
      0 0 18px rgba(255,140,0,.7),
      0 0 24px rgba(0,191,255,.6),
      0 0 32px rgba(255,140,0,.5);
  }
  50% { 
    opacity: 0.95;
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 8px rgba(255,140,0,.98),
      0 0 14px rgba(0,191,255,.9),
      0 0 20px rgba(255,140,0,.75),
      0 0 28px rgba(0,191,255,.65),
      0 0 36px rgba(255,140,0,.55);
  }
}

.section-title.apartment-neon-gold-small,
.neon-section-title.apartment-neon-gold-small,
.apartment-neon-gold-small {
  font-family: 'Neonderthaw', cursive !important;
  font-size: clamp(18px, 2.5vw, 28px) !important;
  color: #fff !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 4px rgba(255,140,0,.95),
    0 0 8px rgba(0,191,255,.85),
    0 0 12px rgba(255,140,0,.7),
    0 0 16px rgba(0,191,255,.6) !important;
  filter: drop-shadow(0 0 3px rgba(255,140,0,.5)) drop-shadow(0 0 6px rgba(0,191,255,.4)) !important;
  animation: neon-flicker-gold 3s infinite ease-in-out !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
}
@keyframes neon-flicker-ocean {
  0%, 100% { 
    opacity: 1;
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 6px rgba(64,224,208,.95),
      0 0 12px rgba(0,191,255,.85),
      0 0 18px rgba(0,191,255,.7),
      0 0 24px rgba(64,224,208,.6);
  }
  50% {
    opacity: 0.95;
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 6px rgba(64,224,208,.9),
      0 0 12px rgba(0,191,255,.8),
      0 0 18px rgba(0,191,255,.65),
      0 0 24px rgba(64,224,208,.55);
  }
}

/* Beach style neon dla Komfortowy apartament przy plaży - zielono-turkusowy z akcentami błękitu, czcionka Neonderthaw */
.neon-title.apartment-neon.apartment-neon-beach,
#apartment-neon-title.apartment-neon.apartment-neon-beach,
.apartment-neon.apartment-neon-beach {
  font-family: 'Neonderthaw', cursive !important;
  font-size: clamp(18px, 3.5vw, 42px) !important;
  color: #fff !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 6px rgba(0,255,200,.95), /* Aqua/Turquoise */
    0 0 12px rgba(64,224,208,.85), /* Turquoise */
    0 0 18px rgba(0,255,200,.7),
    0 0 24px rgba(0,191,255,.6),
    0 0 32px rgba(64,224,208,.5) !important;
  filter: drop-shadow(0 0 4px rgba(0,255,200,.5)) drop-shadow(0 0 8px rgba(64,224,208,.4)) drop-shadow(0 0 12px rgba(0,191,255,.3)) !important;
  animation: neon-flicker-beach 3s infinite ease-in-out !important;
}

@keyframes neon-flicker-beach {
  0%, 100% {
    opacity: 1;
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 6px rgba(0,255,200,.95),
      0 0 12px rgba(64,224,208,.85),
      0 0 18px rgba(0,255,200,.7),
      0 0 24px rgba(0,191,255,.6),
      0 0 32px rgba(64,224,208,.5);
  }
  50% {
    opacity: 0.95;
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 8px rgba(0,255,200,.98),
      0 0 14px rgba(64,224,208,.9),
      0 0 20px rgba(0,255,200,.75),
      0 0 28px rgba(0,191,255,.65),
      0 0 36px rgba(64,224,208,.55);
  }
}

.section-title.apartment-neon-beach-small,
.neon-section-title.apartment-neon-beach-small,
.apartment-neon-beach-small {
  font-family: 'Neonderthaw', cursive !important;
  font-size: clamp(18px, 2.5vw, 28px) !important;
  color: #fff !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 4px rgba(0,255,200,.95),
    0 0 8px rgba(64,224,208,.85),
    0 0 12px rgba(0,255,200,.7),
    0 0 16px rgba(0,191,255,.6) !important;
  filter: drop-shadow(0 0 3px rgba(0,255,200,.5)) drop-shadow(0 0 6px rgba(64,224,208,.4)) !important;
  animation: neon-flicker-beach 3s infinite ease-in-out !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
}
/* Deluxe style neon dla Bastion Wałowa - cyberpunk elektryczny niebiesko-fioletowy z akcentami różu */
body.apartament-deluxe-centrum .neon-title.apartment-neon-deluxe,
body.apartament-deluxe-centrum #apartment-neon-title.apartment-neon-deluxe,
.apartament-deluxe-centrum .neon-title.apartment-neon-deluxe,
.apartament-deluxe-centrum #apartment-neon-title.apartment-neon-deluxe,
body:has(.apartament-deluxe-centrum) .neon-title.apartment-neon-deluxe,
body:has(.apartament-deluxe-centrum) #apartment-neon-title.apartment-neon-deluxe,
.neon-title.apartment-neon-deluxe,
#apartment-neon-title.apartment-neon-deluxe,
.apartment-neon-deluxe {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif !important;
  font-size: clamp(18px, 3.5vw, 42px) !important;
  margin-top: 8px !important;
  margin-bottom: 6px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.01em !important;
  font-weight: 400 !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
  overflow: visible !important;
  color: #fff !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 4px rgba(0,255,255,.95),
    0 0 6px rgba(0,191,255,.9),
    0 0 10px rgba(0,255,255,.85),
    0 0 14px rgba(30,144,255,.8),
    0 0 18px rgba(0,191,255,.75),
    0 0 24px rgba(0,255,255,.7),
    0 0 30px rgba(30,144,255,.65),
    0 0 38px rgba(0,191,255,.6),
    0 0 48px rgba(0,255,255,.55),
    0 0 60px rgba(30,144,255,.5),
    0 0 74px rgba(0,191,255,.45),
    0 0 90px rgba(0,255,255,.4),
    0 0 108px rgba(30,144,255,.35) !important;
  filter: 
    drop-shadow(0 0 3px rgba(0,255,255,.7)) 
    drop-shadow(0 0 6px rgba(0,191,255,.6)) 
    drop-shadow(0 0 9px rgba(30,144,255,.5))
    drop-shadow(0 0 12px rgba(0,255,255,.4))
    drop-shadow(0 0 18px rgba(0,191,255,.35))
    drop-shadow(0 0 24px rgba(30,144,255,.3))
    drop-shadow(0 0 32px rgba(0,255,255,.25)) !important;
  animation: neon-flicker-deluxe-premium 2.2s infinite ease-in-out !important;
  will-change: text-shadow, filter, opacity !important;
}
.apartment-neon-deluxe-small {
  font-family: 'Bebas Neue', cursive !important;
  font-size: clamp(20px, 3vw, 32px) !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  line-height: 1.2 !important;
  margin: 0 0 24px 0 !important;
  color: #fff !important;
  text-shadow:
    0 0 2px rgba(255,255,255,1),
    0 0 4px rgba(0,255,255,.9),
    0 0 8px rgba(0,191,255,.85),
    0 0 12px rgba(30,144,255,.8),
    0 0 18px rgba(0,255,255,.75),
    0 0 24px rgba(0,191,255,.7),
    0 0 32px rgba(30,144,255,.65),
    0 0 42px rgba(0,255,255,.6),
    0 0 54px rgba(0,191,255,.55) !important;
  filter: 
    drop-shadow(0 0 3px rgba(0,255,255,.6)) 
    drop-shadow(0 0 6px rgba(0,191,255,.5)) 
    drop-shadow(0 0 9px rgba(30,144,255,.4))
    drop-shadow(0 0 12px rgba(0,255,255,.35))
    drop-shadow(0 0 18px rgba(0,191,255,.3)) !important;
  animation: neon-flicker-deluxe-premium-small 2.3s infinite ease-in-out !important;
  will-change: text-shadow, filter, opacity !important;
}

/* Delikatniejszy neon dla apartamentu z patio - zachowuje strukturę, ale bardziej subtelne kolory */
.apartament-dwie-sypialnie-patio .neon-title.apartment-neon,
.apartament-dwie-sypialnie-patio #apartment-neon-title.apartment-neon {
  text-shadow:
    0 0 2px rgba(255,255,255,0.95),
    0 0 4px rgba(95, 211, 255, 0.5),
    0 0 8px rgba(95, 211, 255, 0.4),
    0 0 12px rgba(34, 224, 170, 0.35),
    0 0 18px rgba(34, 224, 170, 0.25),
    0 0 24px rgba(95, 211, 255, 0.2),
    0 0 32px rgba(34, 224, 170, 0.15) !important;
  filter: drop-shadow(0 0 3px rgba(95, 211, 255, 0.3)) drop-shadow(0 0 6px rgba(34, 224, 170, 0.2)) !important;
  animation: neon-glow-soft 4s ease-in-out infinite !important;
}

@keyframes neon-glow-soft {
  0%, 100% { 
    opacity: 1;
    text-shadow:
      0 0 2px rgba(255,255,255,0.95),
      0 0 4px rgba(95, 211, 255, 0.5),
      0 0 8px rgba(95, 211, 255, 0.4),
      0 0 12px rgba(34, 224, 170, 0.35),
      0 0 18px rgba(34, 224, 170, 0.25),
      0 0 24px rgba(95, 211, 255, 0.2),
      0 0 32px rgba(34, 224, 170, 0.15);
  }
  50% {
    opacity: 0.98;
    text-shadow:
      0 0 2px rgba(255,255,255,0.95),
      0 0 4px rgba(95, 211, 255, 0.55),
      0 0 8px rgba(95, 211, 255, 0.45),
      0 0 12px rgba(34, 224, 170, 0.4),
      0 0 18px rgba(34, 224, 170, 0.3),
      0 0 24px rgba(95, 211, 255, 0.25),
      0 0 32px rgba(34, 224, 170, 0.2);
  }
}

.apartament-dwie-sypialnie-patio .neon-section-title.apartment-neon-small {
  text-shadow:
    0 0 2px rgba(255,255,255,0.95),
    0 0 3px rgba(95, 211, 255, 0.4),
    0 0 6px rgba(95, 211, 255, 0.3),
    0 0 9px rgba(34, 224, 170, 0.25),
    0 0 12px rgba(95, 211, 255, 0.2),
    0 0 16px rgba(34, 224, 170, 0.15) !important;
  filter: drop-shadow(0 0 2px rgba(95, 211, 255, 0.25)) drop-shadow(0 0 4px rgba(34, 224, 170, 0.15)) !important;
  animation: neon-glow-soft-small 4.5s ease-in-out infinite !important;
}

@keyframes neon-glow-soft-small {
  0%, 100% { 
    opacity: 1;
    text-shadow:
      0 0 2px rgba(255,255,255,0.95),
      0 0 3px rgba(95, 211, 255, 0.4),
      0 0 6px rgba(95, 211, 255, 0.3),
      0 0 9px rgba(34, 224, 170, 0.25),
      0 0 12px rgba(95, 211, 255, 0.2),
      0 0 16px rgba(34, 224, 170, 0.15);
  }
  50% { 
    opacity: 0.98;
    text-shadow:
      0 0 2px rgba(255,255,255,0.95),
      0 0 3px rgba(95, 211, 255, 0.45),
      0 0 6px rgba(95, 211, 255, 0.35),
      0 0 9px rgba(34, 224, 170, 0.3),
      0 0 12px rgba(95, 211, 255, 0.25),
      0 0 16px rgba(34, 224, 170, 0.2);
  }
}

/* Subtelny styl neon dla apartamentu z patio - premium czcionka, subtelne efekty z charakterem */
.neon-title.apartment-neon-subtle,
#apartment-neon-title.apartment-neon-subtle {
  font-family: 'Cormorant Garamond', 'Abril Fatface', serif !important;
  font-size: clamp(32px, 6vw, 72px) !important;
  margin-top: 8px !important;
  margin-bottom: 12px !important;
  line-height: 1.15 !important;
  letter-spacing: 0.01em !important;
  font-weight: 600 !important;
  font-style: normal !important;
  text-transform: uppercase !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  overflow: visible !important;
  color: #fff !important;
  text-shadow:
    0 0 2px rgba(255,255,255,0.95),
    0 0 4px rgba(95, 211, 255, 0.6),
    0 0 8px rgba(95, 211, 255, 0.5),
    0 0 12px rgba(34, 224, 170, 0.4),
    0 0 18px rgba(34, 224, 170, 0.3),
    0 0 24px rgba(95, 211, 255, 0.25),
    0 0 32px rgba(34, 224, 170, 0.2),
    0 2px 4px rgba(0,0,0,0.3) !important;
  filter: 
    drop-shadow(0 0 3px rgba(95, 211, 255, 0.4)) 
    drop-shadow(0 0 6px rgba(34, 224, 170, 0.3))
    drop-shadow(0 0 10px rgba(95, 211, 255, 0.2))
    drop-shadow(0 2px 4px rgba(0,0,0,0.2)) !important;
  animation: neon-glow-subtle 4s ease-in-out infinite !important;
  transform: none !important;
  position: relative !important;
}

@keyframes neon-glow-subtle {
  0%, 100% { 
    opacity: 1;
    text-shadow:
      0 0 2px rgba(255,255,255,0.95),
      0 0 4px rgba(95, 211, 255, 0.6),
      0 0 8px rgba(95, 211, 255, 0.5),
      0 0 12px rgba(34, 224, 170, 0.4),
      0 0 18px rgba(34, 224, 170, 0.3),
      0 0 24px rgba(95, 211, 255, 0.25),
      0 0 32px rgba(34, 224, 170, 0.2),
      0 2px 4px rgba(0,0,0,0.3);
  }
  50% { 
    opacity: 0.98;
    text-shadow:
      0 0 2px rgba(255,255,255,0.95),
      0 0 4px rgba(95, 211, 255, 0.65),
      0 0 8px rgba(95, 211, 255, 0.55),
      0 0 12px rgba(34, 224, 170, 0.45),
      0 0 18px rgba(34, 224, 170, 0.35),
      0 0 24px rgba(95, 211, 255, 0.3),
      0 0 32px rgba(34, 224, 170, 0.25),
      0 2px 4px rgba(0,0,0,0.3);
  }
}

.section-title.apartment-neon-subtle-small {
  font-family: 'Cormorant Garamond', 'Abril Fatface', serif !important;
  font-size: clamp(22px, 3.2vw, 34px) !important;
  font-weight: 600 !important;
  font-style: normal !important;
  letter-spacing: 0.01em !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
  margin: 0 0 24px 0 !important;
  color: #fff !important;
  text-shadow:
    0 0 1px rgba(255,255,255,0.95),
    0 0 3px rgba(95, 211, 255, 0.5),
    0 0 6px rgba(95, 211, 255, 0.4),
    0 0 9px rgba(34, 224, 170, 0.3),
    0 0 12px rgba(95, 211, 255, 0.25),
    0 0 16px rgba(34, 224, 170, 0.2),
    0 1px 2px rgba(0,0,0,0.25) !important;
  filter: 
    drop-shadow(0 0 2px rgba(95, 211, 255, 0.3)) 
    drop-shadow(0 0 4px rgba(34, 224, 170, 0.2))
    drop-shadow(0 0 6px rgba(95, 211, 255, 0.15))
    drop-shadow(0 1px 2px rgba(0,0,0,0.15)) !important;
  animation: neon-glow-subtle-small 4.5s ease-in-out infinite !important;
  position: relative !important;
}

@keyframes neon-glow-subtle-small {
  0%, 100% { 
    opacity: 1;
    text-shadow:
      0 0 1px rgba(255,255,255,0.95),
      0 0 3px rgba(95, 211, 255, 0.5),
      0 0 6px rgba(95, 211, 255, 0.4),
      0 0 9px rgba(34, 224, 170, 0.3),
      0 0 12px rgba(95, 211, 255, 0.25),
      0 0 16px rgba(34, 224, 170, 0.2),
      0 1px 2px rgba(0,0,0,0.25);
  }
  50% { 
    opacity: 0.98;
    text-shadow:
      0 0 1px rgba(255,255,255,0.95),
      0 0 3px rgba(95, 211, 255, 0.55),
      0 0 6px rgba(95, 211, 255, 0.45),
      0 0 9px rgba(34, 224, 170, 0.35),
      0 0 12px rgba(95, 211, 255, 0.3),
      0 0 16px rgba(34, 224, 170, 0.25),
      0 1px 2px rgba(0,0,0,0.25);
  }
}

@keyframes neon-flicker-deluxe-premium {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0,255,255,.95),
      0 0 6px rgba(0,191,255,.9),
      0 0 10px rgba(0,255,255,.85),
      0 0 14px rgba(30,144,255,.8),
      0 0 18px rgba(0,191,255,.75),
      0 0 24px rgba(0,255,255,.7),
      0 0 30px rgba(30,144,255,.65),
      0 0 38px rgba(0,191,255,.6),
      0 0 48px rgba(0,255,255,.55),
      0 0 60px rgba(30,144,255,.5),
      0 0 74px rgba(0,191,255,.45),
      0 0 90px rgba(0,255,255,.4),
      0 0 108px rgba(30,144,255,.35);
    filter: 
      drop-shadow(0 0 3px rgba(0,255,255,.7)) 
      drop-shadow(0 0 6px rgba(0,191,255,.6)) 
      drop-shadow(0 0 9px rgba(30,144,255,.5))
      drop-shadow(0 0 12px rgba(0,255,255,.4))
      drop-shadow(0 0 18px rgba(0,191,255,.35))
      drop-shadow(0 0 24px rgba(30,144,255,.3))
      drop-shadow(0 0 32px rgba(0,255,255,.25));
  }
  12%, 88% { 
    opacity: 0.97; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0,255,255,.92),
      0 0 6px rgba(0,191,255,.87),
      0 0 10px rgba(0,255,255,.82),
      0 0 14px rgba(30,144,255,.77),
      0 0 18px rgba(0,191,255,.72),
      0 0 24px rgba(0,255,255,.67),
      0 0 30px rgba(30,144,255,.62),
      0 0 38px rgba(0,191,255,.57),
      0 0 48px rgba(0,255,255,.52),
      0 0 60px rgba(30,144,255,.47),
      0 0 74px rgba(0,191,255,.42),
      0 0 90px rgba(0,255,255,.37),
      0 0 108px rgba(30,144,255,.32);
    filter: 
      drop-shadow(0 0 3px rgba(0,255,255,.65)) 
      drop-shadow(0 0 6px rgba(0,191,255,.55)) 
      drop-shadow(0 0 9px rgba(30,144,255,.45))
      drop-shadow(0 0 12px rgba(0,255,255,.35))
      drop-shadow(0 0 18px rgba(0,191,255,.3))
      drop-shadow(0 0 24px rgba(30,144,255,.25))
      drop-shadow(0 0 32px rgba(0,255,255,.22));
  }
  25%, 75% { 
    opacity: 0.94;
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0,255,255,.9),
      0 0 6px rgba(0,191,255,.85),
      0 0 10px rgba(0,255,255,.8),
      0 0 14px rgba(30,144,255,.75),
      0 0 18px rgba(0,191,255,.7),
      0 0 24px rgba(0,255,255,.65),
      0 0 30px rgba(30,144,255,.6),
      0 0 38px rgba(0,191,255,.55),
      0 0 48px rgba(0,255,255,.5),
      0 0 60px rgba(30,144,255,.45),
      0 0 74px rgba(0,191,255,.4),
      0 0 90px rgba(0,255,255,.35),
      0 0 108px rgba(30,144,255,.3);
    filter: 
      drop-shadow(0 0 3px rgba(0,255,255,.6)) 
      drop-shadow(0 0 6px rgba(0,191,255,.5)) 
      drop-shadow(0 0 9px rgba(30,144,255,.4))
      drop-shadow(0 0 12px rgba(0,255,255,.3))
      drop-shadow(0 0 18px rgba(0,191,255,.28))
      drop-shadow(0 0 24px rgba(30,144,255,.23))
      drop-shadow(0 0 32px rgba(0,255,255,.2));
  }
  50% { 
    opacity: 0.91; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0,255,255,.85),
      0 0 6px rgba(0,191,255,.8),
      0 0 10px rgba(0,255,255,.75),
      0 0 14px rgba(30,144,255,.7),
      0 0 18px rgba(0,191,255,.65),
      0 0 24px rgba(0,255,255,.6),
      0 0 30px rgba(30,144,255,.55),
      0 0 38px rgba(0,191,255,.5),
      0 0 48px rgba(0,255,255,.45),
      0 0 60px rgba(30,144,255,.4),
      0 0 74px rgba(0,191,255,.35),
      0 0 90px rgba(0,255,255,.3),
      0 0 108px rgba(30,144,255,.25);
    filter: 
      drop-shadow(0 0 3px rgba(0,255,255,.55)) 
      drop-shadow(0 0 6px rgba(0,191,255,.45)) 
      drop-shadow(0 0 9px rgba(30,144,255,.35))
      drop-shadow(0 0 12px rgba(0,255,255,.28))
      drop-shadow(0 0 18px rgba(0,191,255,.23))
      drop-shadow(0 0 24px rgba(30,144,255,.2))
      drop-shadow(0 0 32px rgba(0,255,255,.18));
  }
}

@keyframes neon-flicker-deluxe-premium-small {
  0%, 100% { 
    opacity: 1; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0,255,255,.9),
      0 0 8px rgba(0,191,255,.85),
      0 0 12px rgba(30,144,255,.8),
      0 0 18px rgba(0,255,255,.75),
      0 0 24px rgba(0,191,255,.7),
      0 0 32px rgba(30,144,255,.65),
      0 0 42px rgba(0,255,255,.6),
      0 0 54px rgba(0,191,255,.55);
    filter: 
      drop-shadow(0 0 3px rgba(0,255,255,.6)) 
      drop-shadow(0 0 6px rgba(0,191,255,.5)) 
      drop-shadow(0 0 9px rgba(30,144,255,.4))
      drop-shadow(0 0 12px rgba(0,255,255,.35))
      drop-shadow(0 0 18px rgba(0,191,255,.3));
  }
  12%, 88% { 
    opacity: 0.96; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0,255,255,.87),
      0 0 8px rgba(0,191,255,.82),
      0 0 12px rgba(30,144,255,.77),
      0 0 18px rgba(0,255,255,.72),
      0 0 24px rgba(0,191,255,.67),
      0 0 32px rgba(30,144,255,.62),
      0 0 42px rgba(0,255,255,.57),
      0 0 54px rgba(0,191,255,.52);
    filter: 
      drop-shadow(0 0 3px rgba(0,255,255,.55)) 
      drop-shadow(0 0 6px rgba(0,191,255,.45)) 
      drop-shadow(0 0 9px rgba(30,144,255,.35))
      drop-shadow(0 0 12px rgba(0,255,255,.3))
      drop-shadow(0 0 18px rgba(0,191,255,.25));
  }
  25%, 75% { 
    opacity: 0.93; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0,255,255,.85),
      0 0 8px rgba(0,191,255,.8),
      0 0 12px rgba(30,144,255,.75),
      0 0 18px rgba(0,255,255,.7),
      0 0 24px rgba(0,191,255,.65),
      0 0 32px rgba(30,144,255,.6),
      0 0 42px rgba(0,255,255,.55),
      0 0 54px rgba(0,191,255,.5);
    filter: 
      drop-shadow(0 0 3px rgba(0,255,255,.5)) 
      drop-shadow(0 0 6px rgba(0,191,255,.4)) 
      drop-shadow(0 0 9px rgba(30,144,255,.3))
      drop-shadow(0 0 12px rgba(0,255,255,.28))
      drop-shadow(0 0 18px rgba(0,191,255,.23));
  }
  50% { 
    opacity: 0.90; 
    text-shadow:
      0 0 2px rgba(255,255,255,1),
      0 0 4px rgba(0,255,255,.8),
      0 0 8px rgba(0,191,255,.75),
      0 0 12px rgba(30,144,255,.7),
      0 0 18px rgba(0,255,255,.65),
      0 0 24px rgba(0,191,255,.6),
      0 0 32px rgba(30,144,255,.55),
      0 0 42px rgba(0,255,255,.5),
      0 0 54px rgba(0,191,255,.45);
    filter: 
      drop-shadow(0 0 3px rgba(0,255,255,.45)) 
      drop-shadow(0 0 6px rgba(0,191,255,.35)) 
      drop-shadow(0 0 9px rgba(30,144,255,.28))
      drop-shadow(0 0 12px rgba(0,255,255,.25))
      drop-shadow(0 0 18px rgba(0,191,255,.2));
  }
}
.section-title-small {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  margin: 0 0 16px 0;
  color: var(--fg);
}

/* Grid udogodnień */
.apartment-info {
  margin-bottom: 48px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.info-card {
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.1);
}
.info-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.1));
}
.info-content {
  flex: 1;
}
.info-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--fg);
}
.info-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.amenities-grid {
  margin-bottom: 48px;
}
.amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.amenity-card {
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.1);
}
.amenity-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.1));
}
.amenity-content {
  flex: 1;
}
.amenity-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: var(--fg);
}
.amenity-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Lokalizacja i kontakt */
.location-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.location-card,
.contact-card {
  padding: 32px;
}
.location-address {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 12px 0;
  color: var(--fg);
}
.location-note {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-link {
  font-size: 16px;
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-link:hover {
  color: var(--accent-pink);
}
.contact-link::before {
  content: "→";
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.2s ease;
}
.contact-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Przycisk rezerwacji */
.booking-cta {
  text-align: center;
  margin-top: 48px;
}
.booking-btn {
  font-size: 18px;
  padding: 18px 48px;
  min-width: 280px;
}

/* Responsywność dla strony apartamentu */
@media (max-width: 800px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
  .amenities-list {
    grid-template-columns: 1fr;
  }
  .location-info {
    grid-template-columns: 1fr;
  }
  .booking-btn {
    width: 100%;
    min-width: auto;
  }
  .description-content {
    max-width: 100%;
  }
}

/* Rockstar-like showcase tiles */
.apartment-card { position: relative; grid-column: span 12; overflow: hidden; border-radius: 16px; min-height: 0; aspect-ratio: 16/9; }
.apartment-media { position: absolute; inset: 0; overflow: hidden; }
.apartment-media img { display: block; width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: transform .5s ease; }
.apartment-card:hover .apartment-media img { transform: scale(1.05); }
.apartment-body { position: absolute; inset: auto 0 0 0; padding: 18px; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 70%); color: #fff; }
/* Nazwa apartamentu na górze karty — miniaturka bardziej widoczna */
.apartment-title { position: absolute; top: 0; left: 0; right: 0; z-index: 2; padding: 14px 18px; margin: 0; font-weight: 800; font-size: clamp(18px, 2.6vw, 28px); text-transform: uppercase; letter-spacing: .04em; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.45); background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.2) 60%, transparent 100%); box-sizing: border-box; }
.apartment-meta { opacity: .9; font-size: 14px; margin-bottom: 6px; }
.apartment-summary { opacity: .85; font-size: 13px; line-height: 1.4; margin-bottom: 8px; text-shadow: 0 1px 4px rgba(0,0,0,.3); }
.apartment-details { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 8px; font-size: 12px; opacity: .9; }
.apartment-details-right { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.apartment-area, .apartment-guests { display: inline-flex; align-items: center; gap: 4px; }
.apartment-category { font-weight: 600; opacity: 0.95; }
.apartment-category::before { content: '\00a0·\00a0'; font-weight: 400; }
.apartment-price-badge { display: inline-block; padding: 4px 10px; font-size: 11px; font-weight: 600; border-radius: 8px; border: 1px solid rgba(255,255,255,.5); color: #fff; background: transparent; white-space: nowrap; }
.apartment-price-badge:hover { background: rgba(255,255,255,.15); }
.apartment-rating { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); padding: 6px 10px; border-radius: 20px; display: flex; align-items: center; gap: 6px; z-index: 2; }
.rating-stars { color: #ffbf2a; font-size: 14px; }
.rating-value { color: #fff; font-weight: 600; font-size: 13px; }
@media (max-width: 768px) {
  .apartment-rating { top: 8px; right: 8px; padding: 4px 8px; gap: 4px; }
  .rating-stars { font-size: 10px; }
  .rating-value { font-size: 10px; }
}
.apartment-actions { display: flex; gap: 10px; margin-top: 10px; }
/* Przyciski kart w stylu liquid glass – nadpisane wyżej w bloku .apartment-actions .btn */

/* Desktop: krótki opis wjeżdża z dołu karty po najechaniu */
@media (min-width: 800px) {
  .apartment-card {
    grid-column: span 6;
  }
  .apartment-body {
    overflow: hidden;
  }
  .apartment-summary {
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    max-height: 4.2em;
    overflow: hidden;
  }
  .apartment-card:hover .apartment-summary {
    transform: translateY(0);
    opacity: 0.85;
  }
}

@media (min-width: 960px) {
  .apartment-card {
    grid-column: span 6;
  }
}
@media (min-width: 960px) { 
  .apartment-card { 
    grid-column: span 6; 
  } 
}

/* Mobilny widok dla listy apartamentów */
@media (max-width: 799px) {
  #apartments-grid { 
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    overflow-x: visible !important;
    grid-auto-flow: row !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
  }
  #apartments-grid .apartment-card { 
    grid-column: 1 / -1 !important;
    grid-column-start: 1 !important;
    grid-column-end: -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    aspect-ratio: 16/9 !important;
    min-height: 200px !important;
    max-height: none !important;
    height: auto !important;
    scroll-snap-align: none !important;
    position: relative !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  #apartments-grid .apartment-media {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
  }
  #apartments-grid .apartment-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
  #apartments-grid .apartment-body {
    padding: 16px !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    box-sizing: border-box !important;
    z-index: 2 !important;
  }
  #apartments-grid .apartment-details {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin-bottom: 8px !important;
    font-size: 12px !important;
    opacity: 0.9 !important;
  }
  #apartments-grid .apartment-title {
    font-size: clamp(16px, 4vw, 22px) !important;
    padding: 12px 16px !important;
    line-height: 1.2 !important;
    display: block !important;
    visibility: visible !important;
    z-index: 3 !important;
  }
  #apartments-grid .apartment-media {
    z-index: 1 !important;
  }
  #apartments-grid .apartment-meta {
    font-size: 13px !important;
    margin-bottom: 8px !important;
  }
  #apartments-grid .apartment-category {
    font-size: 12px !important;
  }
  #apartments-grid .apartment-summary {
    display: none !important;
  }
  #apartments-grid .apartment-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 10px !important;
  }
  #apartments-grid .apartment-actions .btn {
    flex: 1 1 auto !important;
    min-width: 100px !important;
    padding: 10px 16px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
  }
  
  /* Ukryj opis na kartach apartamentów na wszystkich stronach (mobile) */
  .apartment-card .apartment-summary {
    display: none !important;
  }
}

.split { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 960px) { 
  .split { grid-template-columns: 0.8fr 1.2fr; } 
  #kontakt .split { grid-template-columns: 0.7fr 1.3fr; }
}

.amenities { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 800px) { .amenities { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .amenities { grid-template-columns: repeat(6, 1fr); } }
.amenity { padding: 14px; border-radius: 14px; border: 1px solid var(--glass-stroke); background: rgba(255,255,255,0.6); text-align: center; }

.usp-line {
  margin: 12px 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: clamp(15px, 1.75vw, 19px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111;
}
/* Na desktopie ta sama szerokość co dwa rzędy kart (grid 12 kolumn) */
@media (min-width: 800px) {
  #apartamenty .usp-line {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
  }
}
@media (min-width: 769px) {
  .usp-line {
    font-size: clamp(13px, 1.15vw, 15px);
  }
}
.usp-line span {
  position: relative;
  padding: 0 6px;
  white-space: nowrap;
}
.usp-line span {
  background-image: var(--hero-image, linear-gradient(90deg, #2d3436, #636e72));
  background-size: cover;
  background-position: center;
}
.usp-line-seaside span {
  background-image: url('assets/IMG_4629.webp');
  background-size: cover;
  background-position: center;
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .hero-image-ready .usp-line span {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .usp-line-seaside span {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}
.usp-line span:not(:last-child)::after {
  content: '•';
  color: rgba(255,255,255,0.6);
  margin-left: 10px;
}
@media (max-width: 800px) {
  .usp-line {
    text-align: center;
    row-gap: 6px;
  }
  .usp-line span {
    white-space: normal;
  }
}

.direct-booking {
  padding: 24px;
}
.direct-booking-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .direct-booking-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}
.direct-booking-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.direct-booking-list li {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--glass-stroke);
  background: rgba(255,255,255,0.6);
}
.direct-booking-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.direct-booking-cta .btn {
  text-decoration: none !important;
}
.direct-booking-cta .muted {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Sekcja dla biznesu */
.business-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.business-feature {
  padding: 24px;
}
.business-feature h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--fg);
}
.business-feature p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Filtry apartamentów */
.apartments-filters {
  padding: 24px;
  margin-bottom: 32px;
}
.filter-search {
  margin-bottom: 16px;
}
.filter-search input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--glass-stroke);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: all 0.2s ease;
}
.filter-search input:focus {
  outline: none;
  border-color: var(--mint);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(34, 224, 170, 0.1);
}
.filter-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-controls select {
  padding: 10px 14px;
  border: 1px solid var(--glass-stroke);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-controls select:focus {
  outline: none;
  border-color: var(--mint);
  background: rgba(255, 255, 255, 0.9);
}
.filter-results {
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(34, 224, 170, 0.1);
  border-radius: 8px;
  font-size: 14px;
  color: var(--muted);
}

/* Statystyki opinii */
.reviews-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px;
  margin-bottom: 24px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--mint);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 800px) {
  .reviews-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Filtry opinii */
.reviews-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  padding: 8px 16px;
  border: 1px solid var(--glass-stroke);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--fg);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover {
  background: rgba(34, 224, 170, 0.1);
  border-color: var(--mint);
}
.filter-btn.active {
  background: var(--mint);
  color: #fff;
  border-color: var(--mint);
}

.reviews { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 960px) { .reviews { grid-template-columns: 1fr 1fr; } }
.review { padding: 16px; border-radius: 14px; border: 1px solid var(--glass-stroke); background: rgba(255,255,255,0.6); }
.review-rating {
  color: #ffbf2a;
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.review-text {
  margin-bottom: 8px;
  line-height: 1.6;
}
.review .author { color: var(--muted); font-size: 14px; }
.review-response {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-stroke);
  background: rgba(255, 255, 255, 0.3);
  padding: 12px 16px;
  border-radius: 8px;
}
.review-response strong {
  color: var(--mint);
  display: block;
  margin-bottom: 6px;
}

/* Linki do opinii */
.reviews-links {
  margin-top: 32px;
  text-align: center;
}
.reviews-links p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 14px;
}
.reviews-links .btn {
  margin: 4px;
  font-size: 13px;
  padding: 10px 16px;
}
.reviews-widget-container {
  margin-top: 32px;
}
.reviews-widget-container h3 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 20px;
  color: var(--fg);
}

/* Blok widżetu Trustindex (Booking.com) */
.reviews-widget-block {
  margin-top: 48px;
}
.reviews-fallback {
  text-align: center;
  padding: 24px 16px;
  color: var(--muted, #555);
  min-height: 60px;
}
.reviews-fallback p { margin: 8px 0; }
.reviews-fallback a { color: var(--primary, #22e0aa); text-decoration: none; font-weight: 600; }
.reviews-fallback a:hover { text-decoration: underline; }
#opinie .reviews-widget-block { min-height: 140px; }
.reviews-widget-title {
  text-align: center;
  margin-bottom: 24px;
  font-size: 20px;
  color: var(--fg);
}
.ti-reviews-container {
  min-height: 120px;
}
.ti-reviews-container .ti-review-item {
  border-radius: 14px;
  border: 1px solid var(--glass-stroke);
  background: rgba(255, 255, 255, 0.6);
}

/* Widżet opinii (Trustindex) — widoczny na mobile */
@media (max-width: 768px) {
  #opinie .reviews-widget-block,
  #opinie .ti-reviews-container {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  #opinie .ti-reviews-container iframe,
  #opinie .ti-reviews-container [id^="ti-widget"] {
    max-width: 100% !important;
  }
}

/* Program lojalnościowy */
.loyalty-card {
  padding: 24px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.loyalty-level {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.loyalty-badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.loyalty-badge.loyalty-bronze {
  background: linear-gradient(135deg, #cd7f32, #b87333);
  color: #fff;
}
.loyalty-badge.loyalty-silver {
  background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
  color: #fff;
}
.loyalty-badge.loyalty-gold {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
}
.loyalty-badge.loyalty-platinum {
  background: linear-gradient(135deg, #e5e4e2, #bcc6cc);
  color: #000;
}
.loyalty-discount {
  color: var(--mint);
  font-weight: 600;
  font-size: 16px;
}
.loyalty-points {
  font-size: 24px;
  margin: 16px 0;
}
.loyalty-points strong {
  color: var(--mint);
  font-size: 32px;
}
.loyalty-next {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}
.loyalty-progress {
  width: 100%;
  height: 8px;
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 16px;
}
.loyalty-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--accent-blue));
  transition: width 0.3s ease;
  border-radius: 4px;
}
.loyalty-benefits {
  margin-top: 32px;
}
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.faq-container { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr);
  gap: 12px; 
  max-width: 1200px; 
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
}
/* Karty FAQ – bezbarwne (liquid glass jak przyciski w hero) */
.faq-item { 
  border-radius: 20px; 
  border: 1px solid rgba(255, 255, 255, 0.45); 
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  height: auto;
}
.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.faq-question {
  padding: 12px 16px;
  cursor: pointer;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  list-style: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
  transition: background 0.2s ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }
.faq-item[open] .faq-question {
  background: rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--fg);
  opacity: 0.8;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 14px 16px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.2);
}

/* Sekcja kontakt - profesjonalny styl z efektem glass */
.contact { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: grid; 
  gap: 16px; 
  color: var(--fg);
}
.contact li {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: transparent;
  border: none;
  margin-bottom: 12px;
}
.contact li:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .contact li {
    flex-direction: column;
    align-items: stretch;
  }
}
.contact li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border-color: rgba(34,224,170,.3);
}
/* Usunięto style dla etykiet - nie są już używane */
.contact li a:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  #kontakt .card.glass {
    padding: 24px 16px !important;
  }
  #kontakt .card.glass h3 {
    font-size: 18px !important;
    margin-bottom: 20px !important;
  }
}
/* Animowane przyciski kontaktowe */
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.contact-btn-phone {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.contact-btn-phone:hover {
  background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.contact-btn-phone:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
}

.contact-btn-email {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white !important;
  box-shadow: 0 4px 12px rgba(245, 87, 108, 0.4);
}

.contact-btn-email:hover {
  background: linear-gradient(135deg, #e082f0 0%, #e4465a 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 87, 108, 0.5);
}

.contact-btn-email:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(245, 87, 108, 0.4);
}

.contact-btn-whatsapp {
  background: #25D366;
  color: white !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.contact-btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.contact-btn-whatsapp:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4);
}

.contact-hours {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding: 12px 0;
  margin-top: 8px;
}
.contact li a:hover {
  color: var(--accent-pink);
  text-decoration: underline;
}

.contact-form { 
  display: grid; 
  gap: 20px; 
  padding: 32px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-stroke);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
}
@media (max-width: 768px) {
  .contact-form {
    padding: 24px 16px;
  }
}
.contact-form label { 
  display: grid; 
  gap: 8px; 
  font-size: 14px; 
  color: var(--fg);
  font-weight: 500;
}
.contact-form label span {
  color: var(--fg);
  font-weight: 600;
}
.contact-form input, .contact-form textarea {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--glass-stroke);
  border-radius: 12px; 
  color: var(--fg);
  padding: 14px 16px; 
  font: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--mint);
  background: rgba(255,255,255,.85);
  box-shadow: 0 0 0 3px rgba(34,224,170,.1);
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

/* Stopka - profesjonalny styl z efektem glass jak nagłówek - kompaktowa wersja */
.site-footer { 
  padding: 32px 0 20px; 
  color: var(--fg);
  margin-top: 48px;
  background: linear-gradient(90deg, rgba(34,224,170,.08), rgba(95,211,255,.08), rgba(255,191,42,.08)), var(--glass-bg);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-top: 1px solid var(--glass-stroke);
  border-radius: 20px 20px 0 0;
}
.footer-inner { 
  display: grid; 
  gap: 24px; 
  grid-template-columns: 1fr; 
  padding: 0 20px;
}
@media (max-width: 959px) {
  .footer-inner .footer-nav {
    border-top: 1px solid var(--glass-stroke);
    padding-top: 24px;
    margin-top: 8px;
  }
  .footer-inner .footer-legal {
    border-top: 1px solid var(--glass-stroke);
    padding-top: 24px;
    margin-top: 8px;
  }
}
@media (min-width: 960px) { 
  .footer-inner { 
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 32px;
  } 
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.footer-nav { 
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 12px 0;
}
.footer-nav a { 
  color: var(--fg); 
  text-decoration: none !important; 
  opacity: .9;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  position: relative;
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  display: inline-block;
  align-self: flex-start;
}
.footer-nav a:hover { 
  opacity: 1; 
  background: rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2), 0 2px 8px rgba(0,0,0,0.1);
  transform: translateY(-1px);
  isolation: isolate;
}
.footer-nav a:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-legal h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .9;
}
.footer-legal p {
  color: var(--fg);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
  opacity: .85;
}
.footer-legal p strong {
  color: var(--fg);
  font-weight: 600;
  opacity: 1;
}
.footer-bottom { 
  border-top: 1px solid var(--glass-stroke); 
  padding-top: 16px; 
  margin-top: 24px;
  text-align: center;
}
.footer-bottom small {
  color: var(--muted);
  font-size: 13px;
}

/* Subtelne animacje i highlighty */
a:hover { text-decoration: underline; }
a.btn:hover { text-decoration: none !important; }
a.floating-cta:hover { text-decoration: none !important; }
img { border: 0; }

/* Previo booking engine wrapper - dopasowanie do stylu strony głównej */
.previo-wrap {
  padding: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-stroke);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
}
.previo-reservation-form {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
}
.previo-reservation-form iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  min-height: 620px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  transition: box-shadow 0.3s ease;
}
.previo-reservation-form iframe:hover {
  box-shadow: 0 6px 30px rgba(0,0,0,.15);
}

/* Floating CTA - taka sama animacja jak przycisk kontakt */
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 60;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none !important;
  color: #fff;
  background: linear-gradient(180deg, #ff7f73, #ff5e51);
  box-shadow: 0 8px 20px rgba(255,94,81,.25);
  border: 2px solid #ff5e51;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, opacity 0.3s ease-in-out;
}

.floating-cta::before {
  position: absolute;
}

.floating-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,0) 60%);
  opacity: .35;
  pointer-events: none;
  mix-blend-mode: screen;
}

.floating-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255,94,81,.35);
  text-decoration: none !important;
}

.floating-cta:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 45%;
  height: 100%;
  background: linear-gradient(110deg, rgba(255,255,255,0), rgba(255,255,255,.55), rgba(255,255,255,0));
  transform: skewX(-20deg);
  animation: sheen .7s ease forwards;
  pointer-events: none;
}

.floating-cta:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(255,94,81,.28);
}
/* Ukryj floating CTA na mobile */
@media (max-width: 799px) {
  .floating-cta {
    display: none !important;
  }
}
@media (min-width: 960px) {
  .floating-cta { right: 26px; bottom: 32px; }
}

/* Gallery + Map generic styles */
.gallery { 
  position: relative;
  min-height: 300px;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Stan: stos kart (domyślny) */
.gallery:not(.expanded) {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  margin: 20px 0;
  padding: 20px;
}

.gallery:not(.expanded) figure {
  position: absolute;
  width: 380px;
  max-width: 85%;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-stroke);
  background: rgba(255,255,255,.8);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), z-index 0.3s ease;
  cursor: pointer;
  pointer-events: none;
}

@media (max-width: 800px) {
  .gallery:not(.expanded) {
    height: 320px;
  }
  
  .gallery:not(.expanded) figure {
    width: 280px;
    max-width: 80%;
  }
}

.gallery:not(.expanded) figure:first-child {
  z-index: 10;
  transform: rotate(-3deg) translateY(0);
}

.gallery:not(.expanded) figure:nth-child(2) {
  z-index: 9;
  transform: rotate(2deg) translateY(-8px) translateX(15px);
  opacity: 0.95;
}

.gallery:not(.expanded) figure:nth-child(3) {
  z-index: 8;
  transform: rotate(-2deg) translateY(-16px) translateX(-10px);
  opacity: 0.9;
}

.gallery:not(.expanded) figure:nth-child(4) {
  z-index: 7;
  transform: rotate(1deg) translateY(-24px) translateX(8px);
  opacity: 0.85;
}

.gallery:not(.expanded) figure:nth-child(5) {
  z-index: 6;
  transform: rotate(-1deg) translateY(-32px) translateX(-5px);
  opacity: 0.8;
}

.gallery:not(.expanded) figure:nth-child(n+6) {
  z-index: 5;
  transform: rotate(0deg) translateY(-40px);
  opacity: 0.7;
}

.gallery:not(.expanded):hover figure:first-child {
  transform: rotate(-3deg) translateY(-5px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.gallery:not(.expanded) img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
}

/* Stan: rozwinięta galeria */
.gallery.expanded {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  min-height: auto;
  height: auto;
  cursor: default;
}

.gallery.expanded figure {
  position: relative;
  grid-column: span 12;
  width: 100%;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-stroke);
  background: rgba(255,255,255,.6);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 1;
  transform: rotate(0deg) translateY(0) translateX(0) scale(1);
  pointer-events: auto;
}

.gallery.expanded figure:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gallery.expanded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
  will-change: opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

@media (min-width: 800px) {
  .gallery.expanded figure {
    grid-column: span 4;
  }
}

@media (min-width: 960px) {
  .gallery.expanded figure {
    grid-column: span 3;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 36px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
  line-height: 1;
  padding: 0;
  font-family: monospace;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 48px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
  line-height: 1;
  padding: 0;
  user-select: none;
  font-family: monospace;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 36px;
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
}
.map { height: 360px; border-radius: 16px; border: 1px solid var(--glass-stroke); overflow: hidden; }

/* (pasek dostępności usunięty) */

.mintax-table th:first-child,
.mintax-table td:first-child {
  width: 36px;
  text-align: center;
  padding: 8px 10px;
}
.mintax-table td:first-child {
  padding: 8px 10px;
}



