.strip[data-id="2481b5"] {
  --section-id: "2481b5";
  --storage-url: "https://prodva.proweb.cz/_section/2481b5";
  --public-url: "https://prodva.proweb.cz/_section/2481b5";
}
.strip[data-id="2481b5"] .main-header {
  --header-height: 100px;
  --header-height-scrolled: 70px;
  --accent-color: #b31b1b;
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.4);
  --text-main: #1a1a1a;
  --transition-speed: 0.5s;
  --header-width: 100%;
  --header-top: 0;
  position: fixed;
  top: var(--header-top);
  left: 50%;
  transform: translateX(-50%);
  width: var(--header-width);
  height: var(--header-height);
  background: transparent;
  z-index: 2000;
  transition: all var(--transition-speed) cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  align-items: center;
}
.strip[data-id="2481b5"] .main-header.scrolled {
  --header-height: var(--header-height-scrolled);
  --header-width: 95%;
  --header-top: 15px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .strip[data-id="2481b5"] .main-header.scrolled {
    --header-width: 92%;
    --header-top: 10px;
  }
}
.strip[data-id="2481b5"] .main-header .header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .strip[data-id="2481b5"] .main-header .header-container {
    padding: 0 25px;
  }
}
.strip[data-id="2481b5"] .main-header .logo-wrapper {
  height: 55px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.strip[data-id="2481b5"] .main-header .logo-wrapper:hover {
  transform: scale(1.03) rotate(-1deg);
}
.strip[data-id="2481b5"] .main-header .logo-wrapper img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}
.strip[data-id="2481b5"] .main-header .nav-desktop .nav-list {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.strip[data-id="2481b5"] .main-header .nav-desktop .nav-list li a {
  position: relative;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  transition: color 0.3s ease;
}
.strip[data-id="2481b5"] .main-header .nav-desktop .nav-list li a i {
  font-size: 1rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}
.strip[data-id="2481b5"] .main-header .nav-desktop .nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateX(-50%);
  border-radius: 2px;
}
.strip[data-id="2481b5"] .main-header .nav-desktop .nav-list li a:hover {
  color: var(--accent-color);
}
.strip[data-id="2481b5"] .main-header .nav-desktop .nav-list li a:hover i {
  transform: scale(1.2);
}
.strip[data-id="2481b5"] .main-header .nav-desktop .nav-list li a:hover::after {
  width: 25px;
}
.strip[data-id="2481b5"] .main-header .nav-toggle {
  display: none;
  width: 45px;
  height: 45px;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  cursor: pointer;
  z-index: 2100;
  transition: all 0.3s ease;
}
.strip[data-id="2481b5"] .main-header .nav-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.strip[data-id="2481b5"] .main-header .nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 24px;
  background: var(--text-main);
  border-radius: 2px;
  left: 10px;
  transition: 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.strip[data-id="2481b5"] .main-header .nav-toggle span:nth-child(1) {
  top: 16px;
}
.strip[data-id="2481b5"] .main-header .nav-toggle span:nth-child(2) {
  top: 22px;
  width: 16px;
  right: 10px;
  left: auto;
}
.strip[data-id="2481b5"] .main-header .nav-toggle span:nth-child(3) {
  top: 28px;
}
.strip[data-id="2481b5"] .main-header .nav-toggle.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
}
.strip[data-id="2481b5"] .main-header .nav-toggle.active span {
  background: #fff;
  width: 24px;
}
.strip[data-id="2481b5"] .main-header .nav-toggle.active span:nth-child(1) {
  top: 22px;
  transform: rotate(135deg);
}
.strip[data-id="2481b5"] .main-header .nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.strip[data-id="2481b5"] .main-header .nav-toggle.active span:nth-child(3) {
  top: 22px;
  transform: rotate(-135deg);
}
.strip[data-id="2481b5"] .mobile-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1999;
  transition: transform 0.7s cubic-bezier(0.86, 0, 0.07, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
  overflow: hidden;
}
.strip[data-id="2481b5"] .mobile-overlay::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(179, 27, 27, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.strip[data-id="2481b5"] .mobile-overlay.active {
  transform: translateX(-100%);
}
.strip[data-id="2481b5"] .mobile-overlay .mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strip[data-id="2481b5"] .mobile-overlay .mobile-nav-list li {
  margin: 30px 0;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.strip[data-id="2481b5"] .mobile-overlay .mobile-nav-list li a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 2.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: color 0.3s ease;
}
.strip[data-id="2481b5"] .mobile-overlay .mobile-nav-list li a i {
  font-size: 1.8rem;
  color: var(--accent-color);
  width: 40px;
  text-align: center;
}
.strip[data-id="2481b5"] .mobile-overlay .mobile-nav-list li a:hover {
  color: var(--accent-color);
}
.strip[data-id="2481b5"] .mobile-overlay.active .mobile-nav-list li {
  opacity: 1;
  transform: translateX(0);
}
.strip[data-id="2481b5"] .mobile-overlay.active .mobile-nav-list li:nth-child(1) {
  transition-delay: 0.3s;
}
.strip[data-id="2481b5"] .mobile-overlay.active .mobile-nav-list li:nth-child(2) {
  transition-delay: 0.4s;
}
.strip[data-id="2481b5"] .mobile-overlay.active .mobile-nav-list li:nth-child(3) {
  transition-delay: 0.5s;
}
.strip[data-id="2481b5"] .mobile-overlay.active .mobile-nav-list li:nth-child(4) {
  transition-delay: 0.6s;
}
.strip[data-id="2481b5"] .mobile-overlay.active .mobile-nav-list li:nth-child(5) {
  transition-delay: 0.7s;
}
.strip[data-id="2481b5"] .mobile-overlay.active .mobile-nav-list li:nth-child(6) {
  transition-delay: 0.8s;
}
@media (max-width: 991px) {
  .strip[data-id="2481b5"] .main-header {
    --header-height: 85px;
  }
  .strip[data-id="2481b5"] .main-header .nav-desktop {
    display: none;
  }
  .strip[data-id="2481b5"] .main-header .nav-toggle {
    display: block;
  }
}.strip[data-id="511509"] {
  --section-id: "511509";
  --storage-url: "https://prodva.proweb.cz/_section/511509";
  --public-url: "https://prodva.proweb.cz/_section/511509";
}
.strip[data-id="511509"] .events-table-section {
  padding: 60px 0;
  background-color: #ffffff;
}
.strip[data-id="511509"] .events-table-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="511509"] .events-table-section .section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  font-weight: 800;
  color: #b31b1b;
}
.strip[data-id="511509"] .events-table-section .content-layout {
  display: flex;
  gap: 30px;
  align-items: stretch;
  justify-content: center;
}
.strip[data-id="511509"] .events-table-section .table-wrapper {
  flex: 1;
  min-width: 0;
  background: #fffdfa;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0ece6;
}
.strip[data-id="511509"] .events-table-section .poster-sidebar {
  flex: 0 0 450px;
  display: flex;
}
.strip[data-id="511509"] .events-table-section .events-table {
  width: 100%;
  border-collapse: collapse;
  flex: 1;
}
.strip[data-id="511509"] .events-table-section .event-row {
  display: flex;
  border-bottom: 1px solid #f0ece6;
}
.strip[data-id="511509"] .events-table-section .event-row:last-child {
  border-bottom: none;
}
.strip[data-id="511509"] .events-table-section .event-row:hover {
  background-color: #f9f6f1;
}
.strip[data-id="511509"] .events-table-section .month-cell {
  flex: 0 0 140px;
  padding: 15px;
  background: #f4f1ed;
  font-weight: 700;
  border-right: 3px solid #b31b1b;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  color: #444;
}
.strip[data-id="511509"] .events-table-section .info-cell {
  flex: 1;
  padding: 15px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  color: #333;
}
.strip[data-id="511509"] .events-table-section .poster-img-wrap {
  width: 100%;
  height: 100%;
  border: 4px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.strip[data-id="511509"] .events-table-section .poster-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.strip[data-id="511509"] .events-table-section .footer-note {
  margin-top: 30px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  background: #fff5f5;
  border-radius: 10px;
  color: #b31b1b;
  font-weight: 600;
  border: 1px solid #fee2e2;
}
@media (max-width: 992px) {
  .strip[data-id="511509"] .content-layout {
    flex-direction: column;
    align-items: center;
  }
  .strip[data-id="511509"] .table-wrapper {
    flex: none;
    width: 100%;
  }
  .strip[data-id="511509"] .poster-sidebar {
    flex: none;
    width: 100%;
    max-width: 500px;
    order: -1;
    margin-bottom: 30px;
    height: auto;
  }
}.strip[data-id="849482"] {
  --section-id: "849482";
  --storage-url: "https://prodva.proweb.cz/_section/849482";
  --public-url: "https://prodva.proweb.cz/_section/849482";
}
.strip[data-id="849482"] .contact-cta-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  text-align: center;
}
.strip[data-id="849482"] .contact-cta-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="849482"] .contact-cta-section .cta-card {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}
.strip[data-id="849482"] .contact-cta-section .cta-title {
  font-size: 2.2rem;
  color: #b31b1b;
  margin-bottom: 20px;
  font-weight: 800;
}
.strip[data-id="849482"] .contact-cta-section .cta-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}
.strip[data-id="849482"] .contact-cta-section .contact-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.strip[data-id="849482"] .contact-cta-section .contact-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s;
}
.strip[data-id="849482"] .contact-cta-section .contact-item a:hover {
  transform: translateY(-5px);
}
.strip[data-id="849482"] .contact-cta-section .contact-item a:hover .icon-box {
  background: #b31b1b;
  color: #fff;
}
.strip[data-id="849482"] .contact-cta-section .contact-item .icon-box {
  width: 60px;
  height: 60px;
  background: #fff5f5;
  color: #b31b1b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
  transition: all 0.2s;
}
.strip[data-id="849482"] .contact-cta-section .contact-item .contact-label {
  font-size: 0.9rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.strip[data-id="849482"] .contact-cta-section .contact-item .contact-value {
  font-size: 1.3rem;
  font-weight: 700;
}
@media (max-width: 600px) {
  .strip[data-id="849482"] .contact-cta-section {
    padding: 60px 0;
  }
  .strip[data-id="849482"] .contact-cta-section .cta-card {
    padding: 30px 20px;
  }
  .strip[data-id="849482"] .contact-cta-section .cta-title {
    font-size: 1.8rem;
  }
  .strip[data-id="849482"] .contact-cta-section .contact-grid {
    gap: 30px;
  }
}.strip[data-id="139bea"] {
  --section-id: "139bea";
  --storage-url: "https://prodva.proweb.cz/_section/139bea";
  --public-url: "https://prodva.proweb.cz/_section/139bea";
}
.strip[data-id="139bea"] .site-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 80px 0 40px;
  font-size: 1rem;
}
.strip[data-id="139bea"] .site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="139bea"] .site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}
.strip[data-id="139bea"] .site-footer .footer-col h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.strip[data-id="139bea"] .site-footer .footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #b31b1b;
}
.strip[data-id="139bea"] .site-footer .footer-logo {
  font-size: 2rem;
  font-weight: 900;
  color: #b31b1b;
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-block;
}
.strip[data-id="139bea"] .site-footer .footer-logo span {
  color: #fff;
}
.strip[data-id="139bea"] .site-footer .footer-about {
  color: #aaa;
  line-height: 1.6;
}
.strip[data-id="139bea"] .site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strip[data-id="139bea"] .site-footer .footer-links li {
  margin-bottom: 12px;
}
.strip[data-id="139bea"] .site-footer .footer-links li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.strip[data-id="139bea"] .site-footer .footer-links li a:hover {
  color: #b31b1b;
}
.strip[data-id="139bea"] .site-footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strip[data-id="139bea"] .site-footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: #aaa;
}
.strip[data-id="139bea"] .site-footer .footer-contact li i {
  color: #b31b1b;
  font-size: 1.2rem;
  margin-top: 4px;
}
.strip[data-id="139bea"] .site-footer .footer-contact li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}
.strip[data-id="139bea"] .site-footer .footer-contact li a:hover {
  color: #b31b1b;
}
.strip[data-id="139bea"] .site-footer .footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}
.strip[data-id="139bea"] .site-footer .footer-bottom a {
  color: #888;
  text-decoration: none;
}
.strip[data-id="139bea"] .site-footer .footer-bottom a:hover {
  color: #fff;
}
.strip[data-id="139bea"] .site-footer .footer-bottom .toplist-wrapper {
  margin-top: 20px;
  display: inline-block;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.strip[data-id="139bea"] .site-footer .footer-bottom .toplist-wrapper:hover {
  opacity: 1;
}
.strip[data-id="139bea"] .site-footer .footer-bottom .toplist-wrapper img {
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .strip[data-id="139bea"] .site-footer {
    padding: 60px 0 30px;
    text-align: center;
  }
  .strip[data-id="139bea"] .site-footer .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .strip[data-id="139bea"] .site-footer .footer-contact li {
    justify-content: center;
  }
  .strip[data-id="139bea"] .site-footer .footer-links li a {
    justify-content: center;
  }
}