/* Vizuální sjednocení stránky O Laser Game s titulní stránkou. */
.laser-info-page {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 212, 0, .055), transparent 28rem),
    #050505;
}

.laser-info {
  width: min(1240px, calc(100% - 3rem));
  max-width: none;
  padding: 132px 0 clamp(4rem, 8vw, 7rem) !important;
}

.laser-info .page-title {
  position: relative;
  margin: 0 0 2rem;
  padding: 1.6rem 0 0;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: .94;
  letter-spacing: -.035em;
  text-align: left;
  text-shadow: none;
}

.laser-info .page-title::before {
  content: "PRŮVODCE HROU";
  position: absolute;
  inset: 0 auto auto 0;
  margin: 0;
  color: var(--yellow);
  font: 800 .75rem/1 var(--font-body, "Inter", sans-serif);
  letter-spacing: .18em;
}

.laser-info .banner-upozorneni {
  max-width: 780px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  padding: .9rem 1.15rem;
  align-items: center;
  border: 0;
  border-left: 3px solid var(--yellow);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 255, 255, .72);
  box-shadow: none;
}

.laser-info .banner-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 212, 0, .48);
  border-radius: 50%;
  font-size: .82rem;
}

.laser-info .hero-image {
  position: relative;
  min-height: clamp(280px, 43vw, 520px);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-top-color: rgba(255, 212, 0, .58);
  border-radius: 16px;
  background: #0a0a0a;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .48);
}

.laser-info .hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, .58));
  pointer-events: none;
}

.laser-info .hero-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transition: transform .7s ease;
}

.laser-info .hero-image:hover img { transform: scale(1.025); }

.laser-info .section-card {
  position: relative;
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.6rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .105);
  border-top-color: rgba(255, 212, 0, .42);
  border-radius: 14px;
  background: rgba(13, 13, 13, .92);
  box-shadow: 0 24px 65px rgba(0, 0, 0, .26);
  transition: none;
}

.laser-info .section-card:hover { box-shadow: 0 24px 65px rgba(0, 0, 0, .26); }

.laser-info .section-label {
  margin: 0;
  color: var(--white);
  font: 700 clamp(1.45rem, 3vw, 2.25rem)/1.16 var(--font-heading, "Cinzel", serif);
  letter-spacing: .025em;
}

.laser-info .section-label::before {
  content: "GLADIATORS LASER GAME";
  display: block;
  margin-bottom: .55rem;
  color: var(--yellow);
  font: 800 .68rem/1.2 var(--font-body, "Inter", sans-serif);
  letter-spacing: .18em;
}

.laser-info .section-divider {
  width: 76px;
  margin: 1rem 0 1.55rem;
  border: 0;
  border-top: 2px solid var(--yellow);
  opacity: .82;
}

.laser-info .section-card > p:not(.intro-text) {
  max-width: 950px;
  color: rgba(255, 255, 255, .68);
  font-size: .98rem;
  line-height: 1.8;
}

.laser-info .intro-text {
  max-width: 800px;
  margin: 0 0 clamp(1.8rem, 4vw, 2.8rem);
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
  line-height: 1.75;
  text-align: left;
}

.laser-info .feature-grid,
.laser-info .safety-grid,
.laser-info .target-grid,
.laser-info .facts-grid {
  display: grid;
  gap: 0;
  margin-top: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-top-color: rgba(255, 212, 0, .4);
  border-radius: 12px;
  background: rgba(6, 6, 6, .58);
}

.laser-info .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.laser-info .safety-grid,
.laser-info .target-grid,
.laser-info .facts-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.laser-info .feature-card,
.laser-info .safety-card,
.laser-info .target-item,
.laser-info .fact-card {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .09);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
  transform: none;
  transition: background .25s ease;
}

.laser-info .feature-card:nth-child(2n),
.laser-info .safety-card:last-child,
.laser-info .target-item:last-child,
.laser-info .fact-card:last-child { border-right: 0; }

.laser-info .feature-card:nth-last-child(-n+2),
.laser-info .safety-card,
.laser-info .target-item,
.laser-info .fact-card { border-bottom: 0; }

.laser-info .feature-card:hover,
.laser-info .safety-card:hover,
.laser-info .target-item:hover,
.laser-info .fact-card:hover {
  border-color: rgba(255, 255, 255, .09);
  background: linear-gradient(180deg, rgba(255, 212, 0, .065), rgba(255, 212, 0, .012));
  box-shadow: none;
  transform: none;
}

.laser-info .feature-card::after,
.laser-info .safety-card::after,
.laser-info .target-item::after,
.laser-info .fact-card::after {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  color: rgba(255, 255, 255, .055);
  font: 700 2.4rem/1 var(--font-heading, "Cinzel", serif);
}

.laser-info .feature-card:nth-child(1)::after,
.laser-info .safety-card:nth-child(1)::after,
.laser-info .target-item:nth-child(1)::after,
.laser-info .fact-card:nth-child(1)::after { content: "01"; }
.laser-info .feature-card:nth-child(2)::after,
.laser-info .safety-card:nth-child(2)::after,
.laser-info .target-item:nth-child(2)::after,
.laser-info .fact-card:nth-child(2)::after { content: "02"; }
.laser-info .feature-card:nth-child(3)::after,
.laser-info .safety-card:nth-child(3)::after,
.laser-info .target-item:nth-child(3)::after,
.laser-info .fact-card:nth-child(3)::after { content: "03"; }
.laser-info .feature-card:nth-child(4)::after,
.laser-info .safety-card:nth-child(4)::after,
.laser-info .target-item:nth-child(4)::after,
.laser-info .fact-card:nth-child(4)::after { content: "04"; }

.laser-info .feature-icon,
.laser-info .safety-icon,
.laser-info .target-item > i,
.laser-info .equipment-note-icon {
  width: 62px;
  height: 62px;
  display: grid;
  flex: 0 0 62px;
  place-items: center;
  margin: 0 0 1.35rem;
  border: 2px solid rgba(255, 212, 0, .55);
  border-radius: 50%;
  background: rgba(255, 212, 0, .075);
  color: var(--yellow);
  filter: drop-shadow(0 0 18px rgba(255, 212, 0, .1));
}

.laser-info .feature-icon { justify-content: center; height: 62px; border-bottom: 2px solid rgba(255, 212, 0, .55); }
.laser-info .feature-icon i,
.laser-info .safety-icon i,
.laser-info .target-item > i,
.laser-info .equipment-note-icon i {
  color: var(--yellow);
  font-size: 1.65rem;
  line-height: 1;
  -webkit-text-stroke: .65px currentColor;
}

.laser-info .feature-card h2,
.laser-info .safety-card h2,
.laser-info .target-item h3,
.laser-info .fact-card h2 {
  margin: 0 0 .85rem;
  color: var(--white);
  font-family: var(--font-heading, "Cinzel", serif);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.35;
}

.laser-info .feature-card p,
.laser-info .safety-card p,
.laser-info .target-item p,
.laser-info .fact-card p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: .9rem;
  line-height: 1.65;
}

.laser-info .feature-card ul {
  display: grid;
  gap: .55rem;
  margin: 1.2rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  list-style: none;
}

.laser-info .feature-card li {
  position: relative;
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, .66);
  font-size: .84rem;
}

.laser-info .feature-card li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}

.laser-info .timeline {
  max-width: 900px;
  margin: 2rem 0 0;
  padding: 0;
}

.laser-info .timeline::before {
  left: 25px;
  width: 1px;
  background: linear-gradient(180deg, var(--yellow), rgba(255, 212, 0, .12));
}

.laser-info .timeline-item { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 1.25rem; margin: 0; padding: 0 0 1.2rem; }
.laser-info .timeline-number {
  position: relative;
  left: auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  z-index: 1;
  border: 2px solid rgba(255, 212, 0, .7);
  border-radius: 50%;
  background: #0d0d0d;
  color: var(--yellow);
  font: 800 1rem/1 var(--font-body, "Inter", sans-serif);
  box-shadow: 0 0 0 7px #0d0d0d;
  transform: none;
}

.laser-info .timeline-item:hover .timeline-number { transform: none; box-shadow: 0 0 0 7px #0d0d0d; }
.laser-info .timeline-content {
  margin: 0;
  padding: .25rem 0 1.4rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
  transform: none;
}
.laser-info .timeline-item:last-child .timeline-content { border-bottom: 0; }
.laser-info .timeline-content h2 { margin: 0 0 .55rem; color: var(--white); font: 700 1.12rem var(--font-heading, "Cinzel", serif); }
.laser-info .timeline-content p { margin: 0; color: rgba(255, 255, 255, .62); line-height: 1.7; }

.laser-info .equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-top-color: rgba(255, 212, 0, .42);
  border-radius: 12px;
}
.laser-info .equipment-card { margin: 0; overflow: hidden; border: 0; border-right: 1px solid rgba(255, 255, 255, .1); border-radius: 0; background: #080808; box-shadow: none; transform: none; }
.laser-info .equipment-card:last-child { border-right: 0; }
.laser-info .equipment-image { aspect-ratio: 16/10; overflow: hidden; background: #050505; }
.laser-info .equipment-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .6s ease; }
.laser-info .equipment-card:hover .equipment-image img { transform: scale(1.035); }
.laser-info .equipment-body { padding: clamp(1.4rem, 3vw, 2rem); }
.laser-info .equipment-body h2 { margin: 0 0 .8rem; color: var(--white); font: 700 1.3rem var(--font-heading, "Cinzel", serif); }
.laser-info .equipment-body p { color: rgba(255, 255, 255, .62); line-height: 1.65; }
.laser-info .equipment-body ul { display: grid; gap: .55rem; margin: 1.2rem 0 0; padding: 1.1rem 0 0; border-top: 1px solid rgba(255, 255, 255, .08); list-style: none; }
.laser-info .equipment-body li { color: rgba(255, 255, 255, .66); font-size: .86rem; }
.laser-info .equipment-note { display: flex; gap: 1rem; margin-top: 1rem; padding: 1.25rem; align-items: center; border: 1px solid rgba(255, 212, 0, .18); border-radius: 9px; background: rgba(255, 212, 0, .045); color: rgba(255, 255, 255, .67); }
.laser-info .equipment-note-icon { width: 46px; height: 46px; flex-basis: 46px; margin: 0; }

.laser-info .fact-number {
  width: auto;
  height: auto;
  display: block;
  margin: 0 0 1.15rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--yellow);
  font: 700 clamp(2.3rem, 4vw, 3.7rem)/1 var(--font-heading, "Cinzel", serif);
  box-shadow: none;
  transform: none;
}
.laser-info .fact-card:hover .fact-number { transform: none; box-shadow: none; }

.laser-info .gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.laser-info .gallery-item { position: relative; aspect-ratio: 16/10; overflow: hidden; border: 0; border-radius: 4px; background: #050505; }
.laser-info .gallery-item::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, .08); pointer-events: none; }
.laser-info .gallery-item img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.9) contrast(1.04); transition: transform .5s ease, filter .3s ease; }
.laser-info .gallery-item:hover img { transform: scale(1.035); filter: saturate(1.06) contrast(1.05); }

.laser-info .cta-section { border-color: rgba(255, 212, 0, .32); background: radial-gradient(circle at 50% 0%, rgba(255, 212, 0, .11), transparent 55%), #0d0d0d; }
.laser-info .cta-box { padding: clamp(1rem, 4vw, 2rem); border: 0; background: transparent; box-shadow: none; text-align: center; }
.laser-info .cta-box h2 { margin: 0 0 .75rem; color: var(--white); font: 700 clamp(1.65rem, 4vw, 2.6rem)/1.2 var(--font-heading, "Cinzel", serif); }
.laser-info .cta-box p { max-width: 620px; margin: 0 auto 1.5rem; color: rgba(255, 255, 255, .66); }
.laser-info .cta-buttons { display: flex; justify-content: center; gap: .75rem; }
.laser-info .cta-button { min-width: 190px; justify-content: center; padding: .9rem 1.35rem; border: 1px solid var(--yellow); border-radius: 7px; font-size: .88rem; letter-spacing: .02em; transition: background .2s ease, color .2s ease; }
.laser-info .cta-button:hover { transform: none; box-shadow: none; }
.laser-info .cta-primary { background: var(--yellow); color: #090909; }
.laser-info .cta-primary:hover { background: #ffe142; color: #090909; }
.laser-info .cta-secondary { background: transparent; color: var(--yellow); }
.laser-info .cta-secondary:hover { background: rgba(255, 212, 0, .08); color: #fff; }

@media (max-width: 980px) {
  .laser-info .safety-grid,
  .laser-info .target-grid,
  .laser-info .facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .laser-info .safety-card:nth-child(2),
  .laser-info .target-item:nth-child(2),
  .laser-info .fact-card:nth-child(2) { border-right: 0; }
  .laser-info .safety-card:nth-child(-n+2),
  .laser-info .target-item:nth-child(-n+2),
  .laser-info .fact-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .09); }
}

@media (max-width: 720px) {
  .laser-info { width: min(100% - 20px, 1240px); }
  .laser-info { width: min(100% - 1.25rem, 1240px); padding-top: 112px !important; }
  .laser-info .page-title { padding-top: 1.45rem; }
  .laser-info .section-card { padding: 1.35rem; border-radius: 11px; }
  .laser-info .feature-grid,
  .laser-info .safety-grid,
  .laser-info .target-grid,
  .laser-info .facts-grid,
  .laser-info .equipment-grid,
  .laser-info .gallery-grid { grid-template-columns: 1fr; }
  .laser-info .feature-card,
  .laser-info .safety-card,
  .laser-info .target-item,
  .laser-info .fact-card,
  .laser-info .equipment-card { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .09); }
  .laser-info .feature-card:last-child,
  .laser-info .safety-card:last-child,
  .laser-info .target-item:last-child,
  .laser-info .fact-card:last-child,
  .laser-info .equipment-card:last-child { border-bottom: 0; }
  .laser-info .feature-card:nth-last-child(2) { border-bottom: 1px solid rgba(255, 255, 255, .09); }
  .laser-info .timeline-item { grid-template-columns: 42px 1fr; gap: .9rem; }
  .laser-info .timeline::before { left: 20px; }
  .laser-info .timeline-number { width: 42px; height: 42px; box-shadow: 0 0 0 5px #0d0d0d; }
  .laser-info .equipment-note { align-items: flex-start; }
  .laser-info .cta-buttons { flex-direction: column; }
  .laser-info .cta-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .laser-info *, .laser-info *::before, .laser-info *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* ambient-gladiator-background */
body.laser-info-page {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 212, 0, .045), transparent 30rem),
    radial-gradient(circle at 88% 42%, rgba(255, 212, 0, .04), transparent 36rem),
    linear-gradient(135deg, #10100e 0%, #0a0a0a 46%, #11100c 100%);
}

body.laser-info-page::before {
  content: "";
  position: fixed;
  inset: 70px 0 0;
  z-index: 0;
  pointer-events: none;
  background:
    url("/assets/icons/helma.svg") no-repeat calc(100% + 55px) 0 / clamp(430px, 38vw, 700px),
    url("/assets/icons/helma.svg") no-repeat -25px 74vh / clamp(230px, 21vw, 360px),
    repeating-linear-gradient(118deg, transparent 0 135px, rgba(255, 212, 0, .12) 136px, transparent 138px 270px);
  opacity: .036;
}

body.laser-info-page > main,
body.laser-info-page > .site-footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 700px) {
  body.laser-info-page::before {
    background:
      url("/assets/icons/helma.svg") no-repeat calc(100% + 55px) 7vh / 300px,
      linear-gradient(145deg, transparent 45%, rgba(255, 212, 0, .1), transparent 58%);
    opacity: .03;
  }
}