/* OTKF — końcowy arkusz wyglądu strony głównej.
   Jest ładowany po starych arkuszach, dlatego ma pierwszeństwo. */

:root{
  --green-950:#032b23;
  --green-900:#063d31;
  --green-800:#075442;
  --green-700:#08705a;
  --green-100:#e7f2ee;
  --orange:#ff6426;
  --orange-dark:#e34e13;
  --navy:#061739;
  --blue:#1677ff;
  --text:#12231e;
  --muted:#66756f;
  --surface:#ffffff;
  --surface-soft:#f4f7f6;
  --line:rgba(6,61,49,.11);
  --shadow-sm:0 12px 30px rgba(9,38,30,.08);
  --shadow-lg:0 28px 70px rgba(9,38,30,.15);
  --radius:24px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:92px}
body{
  font-family:"Manrope",sans-serif;
  background:#fff;
  color:var(--text);
  line-height:1.65;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit}
button,input,textarea{font:inherit}
.container{width:min(1240px,calc(100% - 40px));margin-inline:auto}
.section{padding:112px 0}
.center{text-align:center}

h1,h2,h3,.logo,.nav{font-family:"Space Grotesk",sans-serif}
h2{font-size:clamp(2.15rem,4vw,4rem);line-height:1.05;letter-spacing:-.045em}
p{color:var(--muted)}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:18px;
  color:#bceadd;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.eyebrow::before{content:"";width:28px;height:2px;background:var(--orange);border-radius:99px}
.eyebrow.dark-text{color:var(--green-700)}
.section-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:40px;
  margin-bottom:48px;
}
.section-heading p{margin-top:14px;font-size:17px}
.section-link{
  flex:none;
  font-weight:800;
  text-decoration:none;
  color:var(--green-800);
  border-bottom:1px solid currentColor;
  padding-bottom:5px;
  transition:.2s ease;
}
.section-link:hover{color:var(--orange);transform:translateX(4px)}

.btn{
  min-height:50px;
  padding:0 24px;
  border:1px solid transparent;
  border-radius:13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.btn:hover{transform:translateY(-3px)}
.btn-primary{background:var(--orange);color:#fff;box-shadow:0 14px 28px rgba(255,100,38,.26)}
.btn-primary:hover{background:var(--orange-dark);box-shadow:0 18px 34px rgba(255,100,38,.34)}
.btn-secondary{background:var(--green-700);color:#fff}
.btn-ghost{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.3);color:#fff;backdrop-filter:blur(14px)}
.btn-ghost-dark{background:#fff;border-color:var(--line);color:var(--green-900)}
.btn-light{background:#fff;color:var(--green-900);box-shadow:var(--shadow-sm)}

.court-status{
  background:linear-gradient(90deg,var(--green-800),#0d7a48);
  color:#fff;
  font-size:13px;
}
.court-status-inner{
  min-height:42px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:9px;
  text-align:center;
}
.status-dot{
  width:9px;height:9px;border-radius:50%;
  background:#9df45f;
  box-shadow:0 0 0 6px rgba(157,244,95,.12),0 0 18px #9df45f;
}
.court-status span:last-child{opacity:.82}

@media(max-width:760px){
  .container{width:min(100% - 28px,1240px)}
  .section{padding:76px 0}
  .section-heading{align-items:flex-start;flex-direction:column;margin-bottom:32px}
  .section-link{font-size:14px}
  .court-status-inner{padding:10px 0;flex-wrap:wrap;line-height:1.35}
  .court-status span:last-child{display:none}
}



/* ===== header.css ===== */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.88);
  border-bottom:1px solid rgba(6,61,49,.08);
  backdrop-filter:blur(18px);
}
.header-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
}
.logo{display:flex;align-items:center;flex:none}
.logo img{height:50px;width:auto}
.nav{display:flex;align-items:center;justify-content:flex-end;gap:22px}
.nav a{
  position:relative;
  color:var(--green-950);
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
  transition:.2s ease;
}
.nav a::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-10px;
  height:2px;
  background:var(--orange);
  transform:scaleX(0);
  transform-origin:left;
  transition:.25s ease;
}
.nav a:hover{color:var(--orange)}
.nav a:hover::after{transform:scaleX(1)}
.nav .nav-booking{
  padding:12px 17px;
  background:var(--green-950);
  color:#fff;
  border-radius:12px;
}
.nav .nav-booking::after{display:none}
.nav .nav-booking:hover{background:var(--orange);color:#fff}
.hamburger{
  display:none;
  width:42px;height:42px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}
.hamburger span{width:21px;height:2px;background:var(--green-950);border-radius:9px}
@media(max-width:1120px){
  .nav{gap:14px}
  .nav a{font-size:12px}
}
@media(max-width:960px){
  .header-inner{min-height:70px}
  .logo img{height:43px}
  .nav{display:none}
  .hamburger{display:flex}
}



/* ===== hero.css ===== */
.hero{
  position:relative;
  min-height:790px;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#fff;
  background:
    linear-gradient(90deg,rgba(3,25,20,.96) 0%,rgba(4,42,33,.82) 42%,rgba(3,22,18,.28) 100%),
    linear-gradient(0deg,rgba(0,0,0,.28),rgba(0,0,0,.08)),
    url("../img/herbg2.png") center/cover no-repeat;
}
.hero::after{
  content:"";
  position:absolute;
  width:760px;height:760px;
  right:-270px;bottom:-490px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:50%;
  box-shadow:0 0 0 90px rgba(255,255,255,.025),0 0 0 190px rgba(255,255,255,.018);
}
.hero-noise{
  position:absolute;inset:0;
  opacity:.22;
  background-image:radial-gradient(rgba(255,255,255,.3) .6px,transparent .6px);
  background-size:7px 7px;
  mask-image:linear-gradient(90deg,#000,transparent 72%);
}
.hero-layout{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.55fr);
  gap:90px;
  align-items:center;
  padding-top:70px;
  padding-bottom:70px;
}
.hero-content{max-width:760px}
.hero-title{
  font-size:clamp(4rem,7.6vw,7.6rem);
  line-height:.92;
  letter-spacing:-.065em;
  margin-bottom:28px;
}
.hero-title span{color:var(--orange)}
.hero-subtitle{
  max-width:680px;
  color:rgba(255,255,255,.78);
  font-size:clamp(1rem,1.5vw,1.22rem);
  line-height:1.8;
}
.hero-buttons{display:flex;flex-wrap:wrap;gap:12px;margin-top:34px}
.hero-trust{
  display:flex;
  gap:42px;
  margin-top:52px;
  padding-top:28px;
  border-top:1px solid rgba(255,255,255,.16);
}
.hero-trust div{display:flex;flex-direction:column}
.hero-trust strong{font:700 23px/1 "Space Grotesk",sans-serif}
.hero-trust span{margin-top:7px;color:rgba(255,255,255,.58);font-size:12px}
.hero-card{
  justify-self:end;
  width:min(100%,380px);
  padding:38px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:28px;
  background:linear-gradient(145deg,rgba(255,255,255,.17),rgba(255,255,255,.07));
  backdrop-filter:blur(22px);
  box-shadow:0 35px 80px rgba(0,0,0,.23);
}
.hero-card img{width:76px;margin-bottom:28px}
.hero-card-label{font-size:12px;color:#c5eadd;text-transform:uppercase;letter-spacing:.14em;font-weight:800}
.hero-card h2{font-size:34px;line-height:1.08;margin:13px 0 17px}
.hero-card p{color:rgba(255,255,255,.7)}
.hero-card a{
  margin-top:28px;
  display:flex;justify-content:space-between;
  color:#fff;text-decoration:none;font-weight:800;
}
.hero-card a span{color:var(--orange)}
@media(max-width:900px){
  .hero{min-height:auto}
  .hero-layout{grid-template-columns:1fr;gap:45px;padding-top:100px;padding-bottom:90px}
  .hero-card{justify-self:start;width:100%;max-width:580px}
}
@media(max-width:600px){
  .hero-layout{padding-top:76px;padding-bottom:70px}
  .hero-title{font-size:52px}
  .hero-buttons{flex-direction:column;align-items:stretch}
  .hero-trust{gap:20px;justify-content:space-between}
  .hero-trust strong{font-size:18px}
  .hero-card{padding:28px}
}



/* ===== sponsor.css ===== */
.partner-feature{padding:72px 0;background:#f4f7f6}
.tfp-ad{
  position:relative;
  min-height:560px;
  border-radius:32px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:30px;
  padding:64px;
  color:#fff;
  text-decoration:none;
  background:
    radial-gradient(circle at 75% 45%,rgba(0,217,255,.25),transparent 34%),
    radial-gradient(circle at 20% 0%,rgba(67,90,255,.32),transparent 28%),
    linear-gradient(135deg,#071538,#052552 55%,#034b63);
  box-shadow:0 35px 80px rgba(2,23,55,.25);
  isolation:isolate;
}
.tfp-ad::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(90deg,transparent,#000);
}
.tfp-copy{align-self:center;max-width:610px}
.tfp-brand{display:flex;align-items:center;gap:18px;margin-bottom:34px}
.tfp-brand img{width:180px;max-height:44px;object-fit:contain}
.tfp-brand span{
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:99px;
  font-size:11px;font-weight:700;color:#b9d7ff;
}
.tfp-copy h2{font-size:clamp(2.8rem,5vw,5.25rem);line-height:.97}
.tfp-copy h2 span{display:block;color:#47e5d2}
.tfp-copy p{margin-top:24px;max-width:560px;color:rgba(255,255,255,.7);font-size:17px}
.tfp-features{display:flex;flex-wrap:wrap;gap:9px;margin-top:28px}
.tfp-features span{padding:10px 13px;border:1px solid rgba(255,255,255,.13);border-radius:11px;background:rgba(255,255,255,.055);font-size:12px;font-weight:700}
.tfp-actions{display:flex;align-items:center;flex-wrap:wrap;gap:24px;margin-top:36px}
.tfp-button{padding:15px 22px;border-radius:12px;background:linear-gradient(135deg,#377dff,#15a5f7);box-shadow:0 15px 34px rgba(29,129,255,.35);font-weight:800}
.tfp-url{color:#4bd9ff;font-weight:800}
.tfp-visual{position:relative;min-height:430px;align-self:center}
.orbit{position:absolute;left:50%;top:50%;border:1px solid rgba(36,200,255,.34);border-radius:50%;transform:translate(-50%,-50%)}
.orbit-one{width:320px;height:320px}
.orbit-two{width:450px;height:450px;opacity:.55}
.tennis-core{
  position:absolute;left:50%;top:50%;width:108px;height:108px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:radial-gradient(circle at 35% 30%,#edff77,#caff1f 42%,#67aa0b 72%);
  border:12px solid rgba(3,20,49,.88);
  box-shadow:0 0 0 7px rgba(31,207,255,.35),0 0 55px rgba(48,234,255,.65);
}
.tennis-core::after{
  content:"";position:absolute;inset:18px -4px;border-left:4px solid rgba(255,255,255,.8);border-right:4px solid rgba(255,255,255,.8);border-radius:50%;transform:rotate(14deg)
}
.module{
  position:absolute;width:190px;padding:17px 18px;border-radius:18px;
  box-shadow:0 18px 35px rgba(0,0,0,.25),inset 0 1px rgba(255,255,255,.2);
}
.module small{display:block;font-weight:800;opacity:.82}
.module strong{display:block;font:700 17px/1.15 "Space Grotesk",sans-serif;margin-top:5px}
.module span{font-size:11px;opacity:.78}
.module-blue{left:0;top:120px;background:linear-gradient(135deg,#147df5,#2359d3)}
.module-purple{right:44px;top:5px;background:linear-gradient(135deg,#7042f5,#4423be)}
.module-red{right:-5px;top:166px;background:linear-gradient(135deg,#ff3c68,#d7195b)}
.module-orange{right:52px;bottom:3px;background:linear-gradient(135deg,#f8aa25,#e0710b)}
.module-green{left:38px;bottom:14px;background:linear-gradient(135deg,#1ac18c,#078a69)}
.tfp-ad:hover .tfp-button{transform:translateY(-3px)}
.tfp-ad:hover .tennis-core{animation:pulseBall 1.4s ease-in-out infinite alternate}
@keyframes pulseBall{to{box-shadow:0 0 0 12px rgba(31,207,255,.16),0 0 80px rgba(48,234,255,.85)}}
@media(max-width:1000px){
  .tfp-ad{grid-template-columns:1fr;padding:46px}
  .tfp-visual{min-height:470px}
}
@media(max-width:640px){
  .partner-feature{padding:34px 0}
  .tfp-ad{padding:30px 22px;border-radius:22px;min-height:auto}
  .tfp-brand{align-items:flex-start;flex-direction:column}
  .tfp-copy h2{font-size:42px}
  .tfp-visual{min-height:520px;transform:scale(.82);margin:-20px -38px}
}



/* ===== news.css ===== */
.news-section{background:#fff}
.news-grid{display:grid;grid-template-columns:1.55fr 1fr 1fr;gap:22px}
.news-card{
  min-width:0;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:22px;
  color:inherit;
  background:#fff;
  text-decoration:none;
  box-shadow:0 12px 36px rgba(8,55,43,.06);
  transition:.3s ease;
}
.news-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg)}
.news-card-image{position:relative;aspect-ratio:16/10;overflow:hidden;background:#dde6e2}
.news-card-image img{width:100%;height:100%;object-fit:cover;transition:.5s ease}
.news-card:hover img{transform:scale(1.05)}
.news-badge{position:absolute;left:17px;top:17px;padding:7px 10px;border-radius:99px;background:var(--orange);color:#fff;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}
.news-card-body{padding:26px}
.news-date{display:block;color:var(--green-700);font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.12em}
.news-card h3{margin:10px 0 12px;font-size:22px;line-height:1.15}
.news-card p{font-size:14px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.news-read-more{display:inline-flex;margin-top:22px;color:var(--orange);font-weight:800;font-size:13px}
.news-card-featured{grid-row:span 1}
.news-card-featured .news-card-image{aspect-ratio:16/10}
.news-card-featured h3{font-size:29px}
@media(max-width:900px){.news-grid{grid-template-columns:1fr 1fr}.news-card-featured{grid-column:1/-1}}
@media(max-width:620px){.news-grid{grid-template-columns:1fr}.news-card-featured{grid-column:auto}.news-card-featured h3{font-size:24px}}



/* ===== home-gallery.css ===== */
.home-gallery-pro{background:var(--surface-soft)}
.home-gallery-layout{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  grid-template-rows:260px 260px;
  gap:18px;
}
.home-gallery-card{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  box-shadow:0 14px 35px rgba(10,42,34,.1);
  min-height:0;
}
.home-gallery-card.featured{grid-row:1/3}
.home-gallery-card img{width:100%;height:100%;object-fit:cover;transition:.55s ease}
.home-gallery-card::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 42%,rgba(2,27,21,.86))}
.home-gallery-card:hover img{transform:scale(1.06)}
.home-gallery-overlay{position:absolute;z-index:2;left:22px;right:22px;bottom:20px;color:#fff}
.home-gallery-tag{display:inline-flex;padding:6px 9px;border-radius:99px;background:var(--orange);font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.1em}
.home-gallery-card h3{font-size:18px;line-height:1.2;margin-top:8px}
.home-gallery-card.featured h3{font-size:28px}
@media(max-width:860px){.home-gallery-layout{grid-template-columns:1fr 1fr;grid-template-rows:360px 230px 230px}.home-gallery-card.featured{grid-column:1/-1;grid-row:auto}}
@media(max-width:560px){.home-gallery-layout{display:flex;flex-direction:column}.home-gallery-card{height:280px}.home-gallery-card.featured{height:420px}}



/* ===== o-nas.css ===== */
.about-section{background:var(--green-950);color:#fff}
.about-intro{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:end;margin-bottom:52px}
.about-intro p{color:rgba(255,255,255,.65);font-size:18px;max-width:540px}
.benefit-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.benefit-card{
  position:relative;
  min-height:300px;
  padding:30px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  background:linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,.025));
  transition:.3s ease;
}
.benefit-card:hover{transform:translateY(-7px);border-color:rgba(255,100,38,.55);background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.035))}
.benefit-number{position:absolute;right:22px;top:20px;color:rgba(255,255,255,.2);font:700 13px "Space Grotesk",sans-serif}
.benefit-icon{width:52px;height:52px;display:grid;place-items:center;border-radius:16px;background:rgba(255,100,38,.16);color:#ff8b5b;font-size:23px;margin-bottom:50px}
.benefit-card h3{font-size:21px;margin-bottom:12px}
.benefit-card p{color:rgba(255,255,255,.58);font-size:14px}
@media(max-width:900px){.about-intro{grid-template-columns:1fr;gap:25px}.benefit-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.benefit-grid{grid-template-columns:1fr}.benefit-card{min-height:auto}.benefit-icon{margin-bottom:30px}}



/* ===== liga.css ===== */
.league-section{background:#fff}
.league-panel{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:70px;
  align-items:center;
  padding:70px;
  border:1px solid var(--line);
  border-radius:32px;
  background:
    radial-gradient(circle at 10% 10%,rgba(255,100,38,.08),transparent 30%),
    linear-gradient(135deg,#fff,#f4f8f7);
  box-shadow:var(--shadow-sm);
}
.league-copy h2{margin-bottom:24px}
.league-copy p{font-size:17px}
.league-list{list-style:none;margin:28px 0}
.league-list li{position:relative;padding:9px 0 9px 31px;font-weight:700;color:var(--green-900)}
.league-list li::before{content:"✓";position:absolute;left:0;color:var(--orange)}
.league-actions{display:flex;flex-wrap:wrap;gap:12px}
.league-image{position:relative;padding:30px 0 45px}
.league-browser{overflow:hidden;border-radius:20px;background:#fff;box-shadow:0 28px 65px rgba(0,30,23,.22);transform:perspective(1200px) rotateY(-7deg) rotateX(2deg)}
.league-browser-top{height:32px;display:flex;align-items:center;gap:6px;padding-left:14px;background:#eff3f2}
.league-browser-top i{width:8px;height:8px;border-radius:50%;background:#ccd5d2}
.league-browser img{width:100%}
.floating-ball{position:absolute;left:5%;bottom:0;width:84px;height:84px;border-radius:50%;background:radial-gradient(circle at 35% 30%,#f1ff73,#c2f221 50%,#69a813);box-shadow:0 18px 28px rgba(40,88,12,.25)}
@media(max-width:900px){.league-panel{grid-template-columns:1fr;padding:42px;gap:30px}}
@media(max-width:560px){.league-panel{padding:28px 20px;border-radius:22px}.league-browser{transform:none}.floating-ball{width:60px;height:60px}}



/* ===== join.css ===== */
.membership-section{padding-top:0;background:#fff}
.join-box{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:50px;
  padding:66px;
  border-radius:30px;
  color:#fff;
  background:
    linear-gradient(90deg,rgba(3,43,35,.98),rgba(3,66,53,.88)),
    url("../img/kortbg.png") center/cover no-repeat;
  box-shadow:var(--shadow-lg);
}
.join-box::after{content:"";position:absolute;width:280px;height:280px;border-radius:50%;right:-80px;bottom:-130px;border:1px solid rgba(255,255,255,.16);box-shadow:0 0 0 60px rgba(255,255,255,.025)}
.join-content,.join-download{position:relative;z-index:2}
.join-content h2{margin-bottom:20px}
.join-content p{color:rgba(255,255,255,.68);font-size:17px}
.join-benefits{display:grid;grid-template-columns:1fr 1fr;gap:13px 25px;list-style:none;margin-top:28px}
.join-benefits li{position:relative;padding-left:25px;color:#d9eee8;font-size:14px;font-weight:700}
.join-benefits li::before{content:"✓";position:absolute;left:0;color:#9bedb6}
.join-download{
  padding:34px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:22px;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(12px);
}
.document-icon{width:52px;height:52px;display:grid;place-items:center;border-radius:15px;background:rgba(255,255,255,.12);font-size:28px}
.join-download h3{font-size:25px;margin:22px 0 9px}
.join-download p{color:rgba(255,255,255,.62);margin-bottom:24px}
.text-link{display:block;margin-top:18px;color:#b9ded4;text-decoration:none;font-size:13px;font-weight:800}
@media(max-width:850px){.join-box{grid-template-columns:1fr;padding:42px}.join-benefits{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.join-box{padding:30px 22px}.join-benefits{grid-template-columns:1fr}}



/* ===== contact.css ===== */
.contact-section{background:var(--surface-soft)}
.contact-layout{display:grid;grid-template-columns:1fr 1fr;gap:36px;align-items:start}
.contact-left{display:flex;flex-direction:column;gap:18px}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.contact-card,.contact-info-card,.contact-form-box{
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 28px rgba(10,43,34,.05);
}
.contact-card{padding:25px}
.contact-card .role{display:block;color:var(--orange);font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.12em}
.contact-card .name{font-size:19px;margin:8px 0 15px}
.contact-card .phone{color:var(--green-800);text-decoration:none;font-weight:800}
.contact-card:hover{transform:translateY(-4px)}
.contact-info-card{display:flex;align-items:center;gap:18px;padding:22px;text-decoration:none}
.contact-info-icon{flex:none;width:48px;height:48px;display:grid;place-items:center;border-radius:14px;background:var(--green-100);color:var(--green-800);font-size:20px}
.contact-info-card small{display:block;color:var(--muted);font-size:11px;text-transform:uppercase;letter-spacing:.1em}
.contact-info-card strong{display:block;margin-top:3px;font-size:15px}
.contact-info-card p{margin-top:4px;font-size:12px}
.contact-form-box{padding:38px}
.contact-form-box h3{font-size:28px;margin-bottom:26px}
.contact-form{display:flex;flex-direction:column;gap:15px}
.form-group{display:flex;flex-direction:column;gap:7px}
.form-group label{font-size:12px;font-weight:800;color:var(--green-900)}
.contact-form input,.contact-form textarea{width:100%;border:1px solid #dce5e2;border-radius:12px;background:#fbfcfc;padding:13px 15px;outline:none;transition:.2s ease}
.contact-form input:focus,.contact-form textarea:focus{border-color:var(--green-700);box-shadow:0 0 0 4px rgba(8,112,90,.1);background:#fff}
.contact-form textarea{resize:vertical}
.contact-form button{border:0;cursor:pointer;align-self:flex-start}
@media(max-width:900px){.contact-layout{grid-template-columns:1fr}.contact-form-box{padding:30px}}
@media(max-width:560px){.contact-grid{grid-template-columns:1fr}.contact-form-box{padding:24px}}



/* ===== footer.css ===== */
.footer{background:#032b23;color:#d5e7e1;padding-top:76px}
.footer-partners{padding-bottom:42px;margin-bottom:48px;border-bottom:1px solid rgba(255,255,255,.1)}
.footer-partners-title{text-align:center;color:#fff;font-size:13px;text-transform:uppercase;letter-spacing:.18em;margin-bottom:30px}
.footer-partners-logos{display:flex;align-items:center;justify-content:center;gap:70px;flex-wrap:wrap}
.footer-partners-logos img{max-height:46px;max-width:180px;opacity:.72;transition:.25s ease}
.footer-partners-logos img:hover{opacity:1;transform:translateY(-3px)}
.footer-grid{display:grid;grid-template-columns:1.3fr repeat(3,1fr);gap:54px;padding-bottom:42px}
.footer-col h3{font-size:24px;color:#fff;margin-bottom:16px}
.footer-col h4{font-size:12px;color:#fff;text-transform:uppercase;letter-spacing:.14em;margin-bottom:20px}
.footer-col p,.footer-col li{font-size:13px;color:#a9c5bd}
.footer-col p{margin-bottom:8px}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:9px}
.footer-col a{color:#c7ddd7;text-decoration:none}
.footer-col a:hover{color:#ff8a59}
.footer-bottom{grid-column:1/-1;display:flex;justify-content:space-between;gap:30px;border-top:1px solid rgba(255,255,255,.1);padding-top:26px;margin-top:12px}
.footer-bottom p{font-size:11px;color:#7fa39a}
.footer-admin{opacity:.6}
#cookieOverlay{position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,.66);backdrop-filter:blur(10px);z-index:999999}
.cookieBox{width:min(430px,calc(100% - 30px));padding:32px;border-radius:22px;background:#fff;color:var(--text);box-shadow:0 30px 90px rgba(0,0,0,.32)}
.cookieBox h2{font-size:22px;margin-bottom:12px}
.cookieBox p{font-size:13px;margin-bottom:15px}
.cookieLinks a{color:var(--green-700);font-weight:800}
.cookieButtons{display:flex;gap:10px}
.cookieButtons button{flex:1;padding:12px;border:0;border-radius:11px;font-weight:800;cursor:pointer}
#acceptCookies{background:var(--green-800);color:#fff}
#rejectCookies{background:#edf2f0;color:var(--text)}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.footer{padding-top:58px}.footer-grid{grid-template-columns:1fr}.footer-bottom{flex-direction:column}.footer-partners-logos{gap:32px}.cookieButtons{flex-direction:column}}



/* ===== mobile-menu.css ===== */
.mobile-menu{
  position:fixed;
  top:0;left:-100%;
  width:min(340px,86vw);
  height:100vh;
  padding:90px 22px 30px;
  display:flex;
  flex-direction:column;
  gap:5px;
  background:#fff;
  box-shadow:36px 0 90px rgba(0,0,0,.28);
  transition:left .32s ease;
  z-index:1200;
  overflow-y:auto;
}
.mobile-menu.open{left:0}
.mobile-menu a{
  min-height:48px;
  padding:0 16px;
  display:flex;
  align-items:center;
  border-radius:11px;
  color:var(--green-950);
  font:700 15px "Space Grotesk",sans-serif;
  text-decoration:none;
}
.mobile-menu a:hover{background:var(--surface-soft);color:var(--orange)}
.mobile-menu a[href="rezerwacje.php"]{margin:10px 0;background:var(--green-950);color:#fff;justify-content:center}
.overlay{position:fixed;inset:0;background:rgba(0,0,0,.48);opacity:0;visibility:hidden;transition:.25s ease;z-index:1100}
.overlay.show{opacity:1;visibility:visible}
.hamburger.active{position:relative;z-index:1300}
.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}


/* ===== Wymuszenie układu strony głównej ===== */
body main#start { display:block !important; }
.partner-feature,
.membership-section,
.about-section,
.league-section,
.news-section,
.home-gallery-pro,
.contact-section { width:100% !important; }

.partner-feature .tfp-ad {
  display:grid !important;
  background:
    radial-gradient(circle at 75% 45%,rgba(0,217,255,.25),transparent 34%),
    radial-gradient(circle at 20% 0%,rgba(67,90,255,.32),transparent 28%),
    linear-gradient(135deg,#071538,#052552 55%,#034b63) !important;
  color:#fff !important;
}
.partner-feature .tfp-ad * { box-sizing:border-box; }
.partner-feature .tfp-ad h2,
.partner-feature .tfp-ad p,
.partner-feature .tfp-ad span,
.partner-feature .tfp-ad strong,
.partner-feature .tfp-ad small { text-decoration:none !important; }
.partner-feature .tfp-copy p { color:rgba(255,255,255,.72) !important; }

.membership-section .join-box {
  display:grid !important;
  color:#fff !important;
  background:
    linear-gradient(90deg,rgba(3,43,35,.98),rgba(3,66,53,.88)),
    url("../img/kortbg.png") center/cover no-repeat !important;
}
.membership-section .join-box p { color:rgba(255,255,255,.7) !important; }
.membership-section .join-benefits { list-style:none !important; }
.membership-section .join-download {
  background:rgba(255,255,255,.08) !important;
  border:1px solid rgba(255,255,255,.18) !important;
}


/* =========================================================
   POPRAWKA TFP — prawdziwy preview zamiast pseudo-grafiki
   ========================================================= */
.partner-feature{
  padding:72px 0 !important;
  background:#f4f7f6 !important;
}
.partner-feature .tfp-promo{
  display:grid !important;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr) !important;
  gap:34px !important;
  align-items:center !important;
  padding:46px !important;
  border-radius:30px !important;
  background:
    radial-gradient(circle at 10% 0%,rgba(91,131,255,.18),transparent 26%),
    linear-gradient(135deg,#061739 0%, #0a2958 58%, #0d3c63 100%) !important;
  box-shadow:0 28px 70px rgba(5,25,60,.22) !important;
  overflow:hidden !important;
}
.partner-feature .tfp-copy{
  max-width:560px !important;
  color:#fff !important;
}
.partner-feature .tfp-copy .eyebrow{
  color:#bfe8ff !important;
  margin-bottom:16px !important;
}
.partner-feature .tfp-brand-line{
  display:flex !important;
  align-items:center !important;
  gap:14px !important;
  flex-wrap:wrap !important;
  margin-bottom:18px !important;
}
.partner-feature .tfp-brand-line img{
  width:190px !important;
  max-height:42px !important;
  object-fit:contain !important;
}
.partner-feature .tfp-brand-line span{
  display:inline-flex !important;
  padding:8px 12px !important;
  border:1px solid rgba(255,255,255,.18) !important;
  border-radius:999px !important;
  color:#cfe4ff !important;
  font-size:11px !important;
  font-weight:800 !important;
  letter-spacing:.04em !important;
}
.partner-feature h2#partner-title{
  margin:0 0 16px 0 !important;
  font-size:clamp(2.8rem,5vw,5.2rem) !important;
  line-height:.95 !important;
  letter-spacing:-.05em !important;
  color:#fff !important;
}
.partner-feature .tfp-lead{
  margin:0 0 20px 0 !important;
  font-size:18px !important;
  line-height:1.7 !important;
  color:rgba(255,255,255,.78) !important;
}
.partner-feature .tfp-list{
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
  display:grid !important;
  gap:11px !important;
}
.partner-feature .tfp-list li{
  position:relative !important;
  padding-left:28px !important;
  color:#d9ebff !important;
  font-weight:700 !important;
}
.partner-feature .tfp-list li::before{
  content:"✓" !important;
  position:absolute !important;
  left:0 !important;
  top:0 !important;
  color:#4ce0c3 !important;
  font-weight:900 !important;
}
.partner-feature .tfp-actions{
  display:flex !important;
  align-items:center !important;
  gap:18px !important;
  flex-wrap:wrap !important;
  margin-top:28px !important;
}
.partner-feature .tfp-url-link{
  color:#6fe6ff !important;
  text-decoration:none !important;
  font-weight:800 !important;
  border-bottom:1px solid rgba(111,230,255,.4) !important;
  padding-bottom:4px !important;
}
.partner-feature .tfp-preview{
  min-width:0 !important;
}
.partner-feature .tfp-screen-link{
  position:relative !important;
  display:block !important;
  text-decoration:none !important;
}
.partner-feature .tfp-screen-badge{
  position:absolute !important;
  z-index:2 !important;
  left:18px !important;
  top:18px !important;
  display:inline-flex !important;
  padding:8px 12px !important;
  border-radius:999px !important;
  background:rgba(7,18,48,.82) !important;
  color:#fff !important;
  font-size:11px !important;
  font-weight:800 !important;
  letter-spacing:.04em !important;
  box-shadow:0 10px 24px rgba(0,0,0,.18) !important;
}
.partner-feature .tfp-screen{
  position:relative !important;
  overflow:hidden !important;
  border-radius:22px !important;
  background:#021025 !important;
  border:1px solid rgba(255,255,255,.1) !important;
  box-shadow:
    0 24px 50px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.06) !important;
}
.partner-feature .tfp-screen::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  background:linear-gradient(180deg,rgba(255,255,255,.06),transparent 24%) !important;
  pointer-events:none !important;
}
.partner-feature .tfp-screen img{
  display:block !important;
  width:100% !important;
  height:auto !important;
}
.partner-feature .tfp-screen-link:hover .tfp-screen{
  transform:translateY(-4px) !important;
  transition:transform .25s ease !important;
}
@media(max-width:980px){
  .partner-feature .tfp-promo{
    grid-template-columns:1fr !important;
    padding:28px !important;
  }
  .partner-feature .tfp-copy{
    max-width:none !important;
  }
}
@media(max-width:640px){
  .partner-feature{
    padding:34px 0 !important;
  }
  .partner-feature .tfp-promo{
    padding:22px !important;
    border-radius:22px !important;
  }
  .partner-feature h2#partner-title{
    font-size:40px !important;
  }
  .partner-feature .tfp-brand-line img{
    width:160px !important;
  }
}


/* =========================================================
   DODATKOWA KOREKTA — mniejszy preview TFP, żeby nie nachodził
   ========================================================= */
.partner-feature .tfp-promo{
  grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr) !important;
  gap:42px !important;
}
.partner-feature .tfp-copy{
  max-width:640px !important;
  position:relative !important;
  z-index:2 !important;
}
.partner-feature h2#partner-title{
  max-width:700px !important;
  font-size:clamp(2.45rem,4.4vw,4.7rem) !important;
}
.partner-feature .tfp-lead{
  max-width:620px !important;
}
.partner-feature .tfp-preview{
  min-width:0 !important;
  display:flex !important;
  justify-content:flex-end !important;
  align-items:center !important;
}
.partner-feature .tfp-screen-link{
  width:100% !important;
  max-width:520px !important;
  margin-left:auto !important;
}
.partner-feature .tfp-screen{
  border-radius:20px !important;
}
.partner-feature .tfp-screen img{
  width:100% !important;
  max-width:100% !important;
  height:auto !important;
}
.partner-feature .tfp-screen-badge{
  left:14px !important;
  top:14px !important;
  font-size:10px !important;
  padding:7px 11px !important;
}
@media(max-width:1200px){
  .partner-feature .tfp-promo{
    grid-template-columns:minmax(0,1fr) minmax(360px,.9fr) !important;
    gap:30px !important;
  }
  .partner-feature .tfp-screen-link{
    max-width:460px !important;
  }
}
@media(max-width:980px){
  .partner-feature .tfp-promo{
    grid-template-columns:1fr !important;
  }
  .partner-feature .tfp-screen-link{
    max-width:100% !important;
  }
}


/* =========================================================
   GALERIA PREMIUM — STRONA GŁÓWNA
   ========================================================= */

.home-gallery-pro{
  position:relative !important;
  padding:112px 0 !important;
  background:
    radial-gradient(circle at 10% 5%,rgba(8,112,90,.08),transparent 27%),
    linear-gradient(180deg,#f3f7f5 0%,#f8faf9 100%) !important;
  overflow:hidden !important;
}

.home-gallery-pro::before{
  content:"" !important;
  position:absolute !important;
  top:-150px !important;
  right:-180px !important;
  width:470px !important;
  height:470px !important;
  border:1px solid rgba(7,84,66,.08) !important;
  border-radius:50% !important;
  box-shadow:
    0 0 0 70px rgba(7,84,66,.025),
    0 0 0 145px rgba(7,84,66,.018) !important;
  pointer-events:none !important;
}

.home-gallery-heading{
  position:relative !important;
  z-index:2 !important;
  align-items:flex-end !important;
  margin-bottom:42px !important;
}

.home-gallery-heading > div{
  max-width:760px !important;
}

.home-gallery-heading p{
  max-width:660px !important;
}

.home-gallery-all-link{
  flex:none !important;
  min-height:54px !important;
  display:inline-flex !important;
  align-items:center !important;
  gap:13px !important;
  padding:0 18px 0 20px !important;
  border:1px solid rgba(6,61,49,.12) !important;
  border-radius:15px !important;
  color:#063d31 !important;
  background:rgba(255,255,255,.83) !important;
  box-shadow:0 12px 30px rgba(5,43,34,.07) !important;
  text-decoration:none !important;
  font-size:13px !important;
  font-weight:800 !important;
  backdrop-filter:blur(12px) !important;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease !important;
}

.home-gallery-all-link strong{
  min-width:31px !important;
  height:31px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:10px !important;
  color:#fff !important;
  background:#ff6426 !important;
  font-size:11px !important;
}

.home-gallery-all-link b{
  font-size:18px !important;
  transition:transform .25s ease !important;
}

.home-gallery-all-link:hover{
  transform:translateY(-3px) !important;
  background:#fff !important;
  box-shadow:0 18px 40px rgba(5,43,34,.12) !important;
}

.home-gallery-all-link:hover b{
  transform:translateX(4px) !important;
}

.home-gallery-showcase{
  position:relative !important;
  z-index:2 !important;
  width:100% !important;
  display:grid !important;
  grid-template-columns:repeat(12,minmax(0,1fr)) !important;
  grid-template-rows:250px 250px !important;
  gap:18px !important;
}

.home-gallery-item{
  position:relative !important;
  min-width:0 !important;
  min-height:0 !important;
  width:100% !important;
  height:100% !important;
  display:block !important;
  overflow:hidden !important;
  border:0 !important;
  border-radius:22px !important;
  color:#fff !important;
  background:#163b31 !important;
  box-shadow:0 14px 38px rgba(4,45,35,.12) !important;
  text-align:left !important;
  text-decoration:none !important;
  cursor:pointer !important;
  isolation:isolate !important;
  transition:transform .32s ease,box-shadow .32s ease !important;
}

button.home-gallery-item{
  padding:0 !important;
  font:inherit !important;
}

.home-gallery-item:nth-child(1){
  grid-column:span 6 !important;
  grid-row:span 2 !important;
}

.home-gallery-item:nth-child(n+2){
  grid-column:span 3 !important;
}

.home-gallery-item img{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  transform:scale(1.002) !important;
  transition:transform .65s cubic-bezier(.2,.75,.25,1),filter .4s ease !important;
}

.home-gallery-shade{
  position:absolute !important;
  inset:0 !important;
  z-index:1 !important;
  background:
    linear-gradient(180deg,rgba(3,24,19,.04) 24%,rgba(3,24,19,.22) 52%,rgba(3,24,19,.92) 100%) !important;
  transition:background .35s ease !important;
}

.home-gallery-meta{
  position:absolute !important;
  z-index:2 !important;
  left:22px !important;
  right:22px !important;
  bottom:20px !important;
  transform:translateY(4px) !important;
  transition:transform .35s ease !important;
}

.home-gallery-category{
  display:inline-flex !important;
  align-items:center !important;
  min-height:25px !important;
  padding:0 10px !important;
  margin-bottom:9px !important;
  border-radius:999px !important;
  color:#fff !important;
  background:#ff6426 !important;
  box-shadow:0 9px 20px rgba(255,100,38,.25) !important;
  font-size:9px !important;
  font-weight:800 !important;
  letter-spacing:.1em !important;
  text-transform:uppercase !important;
}

.home-gallery-meta h3{
  max-width:520px !important;
  margin:0 !important;
  color:#fff !important;
  font-size:18px !important;
  line-height:1.22 !important;
  letter-spacing:-.025em !important;
}

.home-gallery-item--featured .home-gallery-meta h3{
  font-size:30px !important;
}

.home-gallery-meta time{
  display:block !important;
  margin-top:7px !important;
  color:rgba(255,255,255,.65) !important;
  font-size:11px !important;
  font-weight:700 !important;
}

.home-gallery-zoom{
  position:absolute !important;
  z-index:3 !important;
  right:18px !important;
  top:18px !important;
  width:40px !important;
  height:40px !important;
  display:grid !important;
  place-items:center !important;
  border:1px solid rgba(255,255,255,.25) !important;
  border-radius:13px !important;
  color:#fff !important;
  background:rgba(3,32,25,.28) !important;
  backdrop-filter:blur(12px) !important;
  font-size:19px !important;
  opacity:0 !important;
  transform:translateY(-7px) !important;
  transition:opacity .3s ease,transform .3s ease,background .3s ease !important;
}

.home-gallery-item:hover{
  transform:translateY(-7px) !important;
  box-shadow:0 26px 58px rgba(4,45,35,.2) !important;
}

.home-gallery-item:hover img{
  transform:scale(1.07) !important;
  filter:saturate(1.08) contrast(1.03) !important;
}

.home-gallery-item:hover .home-gallery-shade{
  background:
    linear-gradient(180deg,rgba(3,24,19,.02) 18%,rgba(3,24,19,.16) 48%,rgba(3,24,19,.94) 100%) !important;
}

.home-gallery-item:hover .home-gallery-meta{
  transform:translateY(0) !important;
}

.home-gallery-item:hover .home-gallery-zoom{
  opacity:1 !important;
  transform:translateY(0) !important;
  background:rgba(255,100,38,.9) !important;
}

.home-gallery-item--more{
  display:flex !important;
  align-items:flex-end !important;
  justify-content:flex-start !important;
}

.home-gallery-item--more .home-gallery-shade{
  background:
    linear-gradient(135deg,rgba(3,43,35,.3),rgba(3,32,25,.91)),
    linear-gradient(180deg,transparent,rgba(3,24,19,.88)) !important;
}

.home-gallery-more-content{
  position:relative !important;
  z-index:2 !important;
  width:100% !important;
  padding:22px !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
}

.home-gallery-more-content strong{
  color:#fff !important;
  font:700 39px/1 "Space Grotesk",sans-serif !important;
  letter-spacing:-.05em !important;
}

.home-gallery-more-content span{
  margin-top:6px !important;
  color:rgba(255,255,255,.67) !important;
  font-size:11px !important;
  font-weight:700 !important;
}

.home-gallery-more-content b{
  margin-top:18px !important;
  color:#fff !important;
  font-size:12px !important;
  font-weight:800 !important;
}

.home-gallery-mobile-count{
  display:none !important;
}

.home-gallery-mobile-action{
  display:none !important;
}

.home-gallery-empty{
  position:relative !important;
  z-index:2 !important;
  padding:50px 30px !important;
  border:1px dashed rgba(6,61,49,.18) !important;
  border-radius:22px !important;
  background:#fff !important;
  text-align:center !important;
}

.home-gallery-empty span{
  color:#ff6426 !important;
  font-size:11px !important;
  font-weight:800 !important;
  letter-spacing:.13em !important;
  text-transform:uppercase !important;
}

.home-gallery-empty h3{
  margin-top:9px !important;
  color:#063d31 !important;
  font-size:24px !important;
}

/* Lightbox */

body.gallery-lightbox-open{
  overflow:hidden !important;
}

.home-gallery-lightbox{
  position:fixed !important;
  inset:0 !important;
  z-index:99999 !important;
  display:none !important;
  align-items:center !important;
  justify-content:center !important;
  padding:22px !important;
}

.home-gallery-lightbox.is-open{
  display:flex !important;
}

.home-gallery-lightbox-backdrop{
  position:absolute !important;
  inset:0 !important;
  background:rgba(1,10,8,.91) !important;
  backdrop-filter:blur(14px) !important;
}

.home-gallery-lightbox-dialog{
  position:relative !important;
  z-index:2 !important;
  width:min(1240px,96vw) !important;
  height:min(840px,91vh) !important;
  display:grid !important;
  grid-template-columns:70px minmax(0,1fr) 70px !important;
  grid-template-rows:64px minmax(0,1fr) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:24px !important;
  overflow:hidden !important;
  background:#07140f !important;
  box-shadow:0 40px 110px rgba(0,0,0,.55) !important;
}

.home-gallery-lightbox-topbar{
  grid-column:1/-1 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  padding:0 18px 0 24px !important;
  border-bottom:1px solid rgba(255,255,255,.09) !important;
}

.home-gallery-lightbox-topbar > div{
  display:flex !important;
  align-items:center !important;
  gap:13px !important;
}

.home-gallery-lightbox-topbar span{
  color:#fff !important;
  font-size:13px !important;
  font-weight:800 !important;
}

.home-gallery-lightbox-topbar strong{
  color:rgba(255,255,255,.55) !important;
  font-size:11px !important;
}

.home-gallery-lightbox-close{
  width:39px !important;
  height:39px !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:12px !important;
  color:#fff !important;
  background:rgba(255,255,255,.07) !important;
  cursor:pointer !important;
  font-size:25px !important;
  line-height:1 !important;
}

.home-gallery-lightbox-nav{
  align-self:center !important;
  justify-self:center !important;
  width:47px !important;
  height:47px !important;
  display:grid !important;
  place-items:center !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:15px !important;
  color:#fff !important;
  background:rgba(255,255,255,.07) !important;
  cursor:pointer !important;
  font-size:34px !important;
  line-height:1 !important;
  transition:.2s ease !important;
}

.home-gallery-lightbox-nav:hover,
.home-gallery-lightbox-close:hover{
  border-color:#ff6426 !important;
  background:#ff6426 !important;
}

.home-gallery-lightbox-figure{
  min-width:0 !important;
  min-height:0 !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  padding:16px 0 22px !important;
}

.home-gallery-lightbox-figure img{
  max-width:100% !important;
  max-height:calc(91vh - 145px) !important;
  width:auto !important;
  height:auto !important;
  object-fit:contain !important;
  border-radius:15px !important;
  box-shadow:0 25px 65px rgba(0,0,0,.38) !important;
}

.home-gallery-lightbox-figure figcaption{
  min-height:20px !important;
  margin-top:15px !important;
  color:rgba(255,255,255,.76) !important;
  font-size:13px !important;
  font-weight:700 !important;
  text-align:center !important;
}

@media(max-width:980px){
  .home-gallery-showcase{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    grid-template-rows:410px 220px 220px !important;
  }

  .home-gallery-item:nth-child(1){
    grid-column:1/-1 !important;
    grid-row:1 !important;
  }

  .home-gallery-item:nth-child(n+2){
    grid-column:auto !important;
    grid-row:auto !important;
  }
}


/* =========================================================
   TENNISFINALSPRO — SEKCJA PREMIUM
   ========================================================= */

.tfpx-section{
  position:relative;
  padding:78px 0;
  background:
    radial-gradient(circle at 50% 0%,rgba(38,113,255,.07),transparent 34%),
    #f3f7f6;
  overflow:hidden;
}

.tfpx-section::before{
  content:"";
  position:absolute;
  left:-230px;
  top:-250px;
  width:620px;
  height:620px;
  border:1px solid rgba(20,83,163,.06);
  border-radius:50%;
  box-shadow:
    0 0 0 90px rgba(20,83,163,.018),
    0 0 0 185px rgba(20,83,163,.012);
  pointer-events:none;
}

.tfpx-card{
  position:relative;
  isolation:isolate;
  display:grid;
  grid-template-columns:minmax(0,.87fr) minmax(0,1.13fr);
  gap:50px;
  padding:58px 58px 0;
  overflow:hidden;
  border:1px solid rgba(111,173,255,.14);
  border-radius:34px;
  color:#fff;
  background:
    radial-gradient(circle at 85% 25%,rgba(0,208,255,.18),transparent 27%),
    radial-gradient(circle at 9% 0%,rgba(83,92,255,.27),transparent 28%),
    linear-gradient(135deg,#061437 0%,#08265a 56%,#064561 100%);
  box-shadow:
    0 38px 90px rgba(3,25,66,.25),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.tfpx-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  opacity:.44;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:47px 47px;
  mask-image:linear-gradient(90deg,transparent 18%,#000 80%);
}

.tfpx-card::after{
  content:"";
  position:absolute;
  z-index:-1;
  right:-165px;
  top:-190px;
  width:520px;
  height:520px;
  border:1px solid rgba(71,221,255,.14);
  border-radius:50%;
  box-shadow:
    0 0 0 65px rgba(71,221,255,.025),
    0 0 0 135px rgba(71,221,255,.018);
}

.tfpx-copy{
  min-width:0;
  align-self:center;
  padding-bottom:54px;
}

.tfpx-topline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:27px;
}

.tfpx-kicker,
.tfpx-online{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:#b9dcff;
  font-size:10px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.tfpx-kicker i{
  width:27px;
  height:2px;
  border-radius:99px;
  background:#ff6426;
}

.tfpx-online{
  padding:8px 11px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  color:#d9eeff;
  background:rgba(255,255,255,.045);
  letter-spacing:.04em;
  text-transform:none;
}

.tfpx-online i,
.tfpx-live-dot{
  width:8px;
  height:8px;
  flex:0 0 8px;
  border-radius:50%;
  background:#45ef81;
  box-shadow:0 0 0 5px rgba(69,239,129,.1),0 0 15px rgba(69,239,129,.8);
}

.tfpx-logo{
  width:190px;
  max-height:46px;
  object-fit:contain;
  object-position:left center;
  margin-bottom:25px;
}

.tfpx-copy h2{
  max-width:620px;
  margin:0;
  color:#fff;
  font-size:clamp(3.3rem,5.1vw,5.5rem);
  line-height:.92;
  letter-spacing:-.062em;
}

.tfpx-copy h2 span{
  color:#4be4ca;
}

.tfpx-description{
  max-width:610px;
  margin-top:25px;
  color:rgba(255,255,255,.71);
  font-size:16px;
  line-height:1.75;
}

.tfpx-actions{
  display:flex;
  flex-wrap:wrap;
  gap:11px;
  margin-top:30px;
}

.tfpx-primary,
.tfpx-secondary{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:0 21px;
  border-radius:13px;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
}

.tfpx-primary{
  color:#fff;
  background:linear-gradient(135deg,#2887ff,#12a6f5);
  box-shadow:0 14px 30px rgba(29,128,255,.32);
}

.tfpx-primary span{
  font-size:19px;
  transition:transform .25s ease;
}

.tfpx-secondary{
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  background:rgba(255,255,255,.065);
  backdrop-filter:blur(12px);
}

.tfpx-primary:hover,
.tfpx-secondary:hover{
  transform:translateY(-3px);
}

.tfpx-primary:hover{
  box-shadow:0 20px 40px rgba(29,128,255,.42);
}

.tfpx-primary:hover span{
  transform:translateX(4px);
}

.tfpx-secondary:hover{
  background:rgba(255,255,255,.11);
}

.tfpx-offer{
  width:min(100%,520px);
  min-height:76px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:15px;
  margin-top:18px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  color:#fff;
  background:rgba(4,18,51,.39);
  text-decoration:none;
  backdrop-filter:blur(13px);
  transition:transform .25s ease,border-color .25s ease,background .25s ease;
}

.tfpx-offer:hover{
  transform:translateY(-3px);
  border-color:rgba(72,224,200,.45);
  background:rgba(4,18,51,.55);
}

.tfpx-offer-price{
  min-width:63px;
  height:50px;
  display:grid;
  place-items:center;
  border-radius:13px;
  color:#071b43;
  background:#cffa31;
  font:800 17px "Space Grotesk",sans-serif;
}

.tfpx-offer-copy{
  min-width:0;
}

.tfpx-offer-copy strong,
.tfpx-offer-copy small{
  display:block;
}

.tfpx-offer-copy strong{
  color:#fff;
  font-size:13px;
}

.tfpx-offer-copy small{
  margin-top:3px;
  color:rgba(255,255,255,.55);
  font-size:10px;
  line-height:1.4;
}

.tfpx-offer-arrow{
  color:#5be8d0;
  font-size:18px;
}

.tfpx-visual{
  min-width:0;
  align-self:center;
  padding-bottom:37px;
}

.tfpx-browser{
  position:relative;
  display:block;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.13);
  border-radius:21px;
  color:#fff;
  background:#020d26;
  text-decoration:none;
  box-shadow:
    0 27px 60px rgba(0,0,0,.31),
    inset 0 1px 0 rgba(255,255,255,.06);
  transform:perspective(1400px) rotateY(-2.2deg) rotateX(1deg);
  transform-origin:center;
  transition:transform .35s ease,box-shadow .35s ease;
}

.tfpx-browser:hover{
  transform:perspective(1400px) rotateY(0) rotateX(0) translateY(-5px);
  box-shadow:0 35px 75px rgba(0,0,0,.39);
}

.tfpx-browser-bar{
  height:40px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:13px;
  padding:0 13px;
  border-bottom:1px solid rgba(255,255,255,.07);
  background:#f6f8fb;
}

.tfpx-browser-dots{
  display:flex;
  gap:5px;
}

.tfpx-browser-dots i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#d7dee7;
}

.tfpx-browser-address{
  min-width:0;
  overflow:hidden;
  color:#718093;
  font-size:9px;
  font-weight:700;
  text-align:center;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.tfpx-browser-open{
  color:#1479e9;
  font-size:9px;
  font-weight:800;
}

.tfpx-browser-image{
  aspect-ratio:2 / 1;
  overflow:hidden;
}

.tfpx-browser-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.tfpx-otkf-live{
  position:relative;
  z-index:3;
  width:calc(100% - 46px);
  min-height:76px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:14px;
  margin:-25px auto 0;
  padding:13px 17px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:17px;
  color:#fff;
  background:rgba(7,28,64,.91);
  box-shadow:0 20px 42px rgba(0,0,0,.3);
  text-decoration:none;
  backdrop-filter:blur(18px);
  transition:transform .25s ease,background .25s ease;
}

.tfpx-otkf-live:hover{
  transform:translateY(-4px);
  background:rgba(9,39,86,.96);
}

.tfpx-otkf-live > span:nth-child(2){
  min-width:0;
}

.tfpx-otkf-live small,
.tfpx-otkf-live strong,
.tfpx-otkf-live em{
  display:block;
}

.tfpx-otkf-live small{
  color:#64e1c8;
  font-size:9px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.tfpx-otkf-live strong{
  margin-top:2px;
  color:#fff;
  font:700 17px "Space Grotesk",sans-serif;
}

.tfpx-otkf-live em{
  margin-top:2px;
  color:rgba(255,255,255,.53);
  font-size:10px;
  font-style:normal;
}

.tfpx-otkf-live b{
  color:#56e6ce;
  font-size:20px;
}

.tfpx-modules{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:18px;
}

.tfpx-module{
  min-width:0;
  min-height:78px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:11px;
  padding:12px 13px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:15px;
  color:#fff;
  text-decoration:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.07);
  transition:transform .25s ease,filter .25s ease;
}

.tfpx-module:hover{
  transform:translateY(-4px);
  filter:brightness(1.08);
}

.tfpx-module-blue{
  background:linear-gradient(135deg,rgba(34,124,255,.74),rgba(33,69,177,.64));
}

.tfpx-module-purple{
  background:linear-gradient(135deg,rgba(116,66,244,.75),rgba(70,37,174,.62));
}

.tfpx-module-red{
  background:linear-gradient(135deg,rgba(255,55,104,.75),rgba(194,20,76,.62));
}

.tfpx-module-orange{
  background:linear-gradient(135deg,rgba(246,154,30,.78),rgba(198,91,8,.64));
}

.tfpx-module-icon{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:11px;
  background:rgba(255,255,255,.13);
  font-size:18px;
  font-weight:800;
}

.tfpx-live-icon{
  font-size:9px;
  letter-spacing:.04em;
}

.tfpx-module > span:nth-child(2){
  min-width:0;
}

.tfpx-module strong,
.tfpx-module small{
  display:block;
}

.tfpx-module strong{
  overflow:hidden;
  color:#fff;
  font-size:12px;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.tfpx-module small{
  margin-top:2px;
  overflow:hidden;
  color:rgba(255,255,255,.64);
  font-size:9px;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.tfpx-module b{
  color:rgba(255,255,255,.8);
  font-size:14px;
}

.tfpx-stats{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:repeat(4,minmax(95px,.55fr)) minmax(280px,1.7fr);
  align-items:stretch;
  margin:0 -58px;
  border-top:1px solid rgba(255,255,255,.1);
  background:rgba(2,13,39,.29);
}

.tfpx-stats > div{
  min-height:91px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:14px 22px;
  border-right:1px solid rgba(255,255,255,.08);
}

.tfpx-stats > div > strong{
  color:#fff;
  font:700 25px/1 "Space Grotesk",sans-serif;
}

.tfpx-stats > div > span{
  margin-top:6px;
  color:rgba(255,255,255,.51);
  font-size:9px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.tfpx-stats .tfpx-stats-copy{
  border-right:0;
}

.tfpx-stats-copy small{
  color:#54dfc7;
  font-size:9px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.tfpx-stats-copy strong{
  margin-top:5px;
  font-size:14px !important;
  line-height:1.3 !important;
}

@media(max-width:1080px){
  .tfpx-card{
    grid-template-columns:1fr;
    gap:16px;
  }

  .tfpx-copy{
    max-width:720px;
    padding-bottom:20px;
  }

  .tfpx-visual{
    padding-bottom:35px;
  }

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

  .tfpx-stats-copy{
    grid-column:1 / -1;
    min-height:70px !important;
    border-top:1px solid rgba(255,255,255,.08);
  }
}


/* =========================================================
   TFP — WERSJA BEZ PLANSZY PODGLĄDU
   ========================================================= */

.tfpx-visual{
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
  gap:18px !important;
  min-width:0 !important;
  padding:10px 0 42px !important;
}

.tfpx-visual-intro{
  max-width:620px !important;
  padding:0 3px 4px !important;
}

.tfpx-visual-intro > span{
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  color:#58e5cc !important;
  font-size:9px !important;
  font-weight:800 !important;
  letter-spacing:.11em !important;
  text-transform:uppercase !important;
}

.tfpx-visual-intro > span::before{
  content:"" !important;
  width:22px !important;
  height:2px !important;
  border-radius:999px !important;
  background:#ff6426 !important;
}

.tfpx-visual-intro h3{
  max-width:590px !important;
  margin:12px 0 8px !important;
  color:#fff !important;
  font-size:clamp(1.75rem,2.5vw,2.65rem) !important;
  line-height:1.05 !important;
  letter-spacing:-.045em !important;
}

.tfpx-visual-intro p{
  max-width:570px !important;
  margin:0 !important;
  color:rgba(255,255,255,.59) !important;
  font-size:12px !important;
  line-height:1.6 !important;
}

.tfpx-otkf-live{
  position:relative !important;
  width:100% !important;
  min-height:132px !important;
  margin:0 !important;
  padding:22px 24px !important;
  border:1px solid rgba(92,230,207,.3) !important;
  border-radius:20px !important;
  background:
    radial-gradient(circle at 91% 16%,rgba(66,239,200,.22),transparent 31%),
    linear-gradient(135deg,rgba(13,64,91,.96),rgba(5,32,70,.94)) !important;
  box-shadow:
    0 24px 48px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
  overflow:hidden !important;
}

.tfpx-otkf-live::after{
  content:"OTKF" !important;
  position:absolute !important;
  right:22px !important;
  bottom:-17px !important;
  color:rgba(255,255,255,.045) !important;
  font:800 92px/1 "Space Grotesk",sans-serif !important;
  letter-spacing:-.07em !important;
  pointer-events:none !important;
}

.tfpx-otkf-live .tfpx-live-dot{
  width:13px !important;
  height:13px !important;
  flex-basis:13px !important;
  box-shadow:
    0 0 0 7px rgba(69,239,129,.11),
    0 0 23px rgba(69,239,129,.85) !important;
}

.tfpx-otkf-live small{
  font-size:10px !important;
}

.tfpx-otkf-live strong{
  margin-top:4px !important;
  font-size:27px !important;
}

.tfpx-otkf-live em{
  margin-top:6px !important;
  font-size:11px !important;
}

.tfpx-otkf-live b{
  position:relative !important;
  z-index:2 !important;
  width:46px !important;
  height:46px !important;
  display:grid !important;
  place-items:center !important;
  border:1px solid rgba(255,255,255,.15) !important;
  border-radius:14px !important;
  background:rgba(255,255,255,.07) !important;
  font-size:24px !important;
}

.tfpx-modules{
  grid-template-columns:1fr 1fr !important;
  gap:12px !important;
  margin-top:0 !important;
}

.tfpx-module{
  min-height:104px !important;
  padding:16px !important;
  border-radius:18px !important;
}

.tfpx-module-icon{
  width:44px !important;
  height:44px !important;
  border-radius:13px !important;
}

.tfpx-module strong{
  font-size:13px !important;
}

.tfpx-module small{
  margin-top:4px !important;
  font-size:9px !important;
}
