* { margin: 0; padding: 0; box-sizing: border-box; }
/* Neon zaktualizowany na Magenta, Tła ustawione w ciemnym klimacie */
:root { --neon: #C2185B; --bg: #050505; --bg-light: #111111; --text: #ffffff; --text-dim: #aaaaaa; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--bg); color: var(--text); overflow-x: hidden; }

/* --- NAWIGACJA --- */
nav {
    position: fixed; top: 0; left: 0; width: 100%; padding: 20px 50px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05); z-index: 100;
}
.logo { font-size: 1.8rem; font-weight: 900; letter-spacing: -1px; text-transform: uppercase; color: var(--text); text-decoration: none; }
.logo span { color: var(--neon); }

.nav-links { display: flex; gap: 30px; list-style: none; align-items: center;}
.nav-links a { color: var(--text); text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover { color: var(--neon); }
.nav-buy-btn { background: var(--neon); color: #fff !important; padding: 10px 24px; border-radius: 2px; transform: skewX(-10deg); display: inline-block; font-weight: 900 !important; }
.nav-buy-btn:hover { background: #fff; color: #000 !important; }

/* --- GLOBALNE --- */
.section-padding { padding: 100px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 3rem; font-weight: 900; text-transform: uppercase; text-align: center; margin-bottom: 20px; }
.section-subtitle { text-align: center; color: var(--text-dim); max-width: 600px; margin: 0 auto 60px auto; line-height: 1.6; }

/* ZMIANA: Usunięty stroke, dodane świecenie neonowe do akcentów nagłówka */
.section-title span { 
    color: var(--neon); 
    text-shadow: 0 0 15px rgba(194, 24, 91, 0.5); 
}

/* --- PRZYCISKI --- */
.btn {
    padding: 16px 36px; font-size: 0.9rem; font-weight: 900; text-transform: uppercase;
    text-decoration: none; letter-spacing: 1px; transition: 0.3s;
    transform: skewX(-10deg); display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
}
.btn span { transform: skewX(10deg); }
.btn-primary { background: var(--neon); color: #fff; box-shadow: 0 0 15px rgba(194, 24, 91, 0.3); border: none;}
.btn-primary:hover { background: #fff; color: #000; box-shadow: 0 0 25px rgba(255, 255, 255, 0.4); transform: skewX(-10deg) scale(1.05); }
.btn-secondary { background: transparent; color: var(--text); border: 2px solid rgba(255,255,255,0.2); }
.btn-secondary:hover { background: var(--neon); color: #fff; transform: skewX(-10deg) scale(1.05); border-color: var(--neon);}

/* --- HERO SECTION --- */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; text-align: center; padding-top: 60px;}
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; filter: grayscale(80%) contrast(120%); opacity: 0.5; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(5,5,5,0.4) 0%, var(--bg) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; max-width: 900px; padding: 20px; }
.hero-tag { display: inline-block; background: var(--neon); color: #fff; font-weight: 900; padding: 6px 14px; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 20px; transform: skewX(-10deg); box-shadow: 0 0 10px rgba(194, 24, 91, 0.3); }
.hero h1 { font-size: 5.5rem; font-weight: 900; text-transform: uppercase; line-height: 1.1; margin-bottom: 20px; text-shadow: 2px 2px 20px rgba(0,0,0,0.8); }

/* ZMIANA: Solidny neonowy tekst ze świeceniem w Hero (był hollow/pusty) */
.hero h1 span { 
    color: var(--neon); 
    text-shadow: 0 0 25px rgba(194, 24, 91, 0.6); 
}

.hero p { font-size: 1.2rem; font-weight: 400; margin-bottom: 40px; color: #ddd; max-width: 700px; margin-left: auto; margin-right: auto;}
.hero .btn-group { display: flex; gap: 20px; justify-content: center; }

/* --- O KLUBIE (BENTO GRID) --- */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-box { background: var(--bg-light); border: 1px solid rgba(255,255,255,0.05); padding: 40px 30px; border-radius: 8px; transition: 0.3s; position: relative; overflow: hidden;}
.bento-box:hover { border-color: var(--neon); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(194, 24, 91, 0.1);}
.bento-box h3 { font-size: 1.8rem; font-weight: 900; margin-bottom: 10px; color: var(--neon); text-transform: uppercase;}
.bento-box p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.6;}
.bento-box.large { grid-column: span 2; background: linear-gradient(45deg, var(--bg-light), #1a1a1a);}

/* --- STREFY I ZAJĘCIA --- */
.zones-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.zone-card { position: relative; height: 300px; border-radius: 8px; overflow: hidden; display: flex; align-items: flex-end; padding: 30px; text-decoration: none; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s;}
.zone-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: 0.5s; filter: grayscale(50%);}
.zone-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%); z-index: 2; transition: 0.3s;}
.zone-content { position: relative; z-index: 3; }
.zone-card h3 { font-size: 1.5rem; font-weight: 900; text-transform: uppercase; color: #fff; margin-bottom: 5px; transition: 0.3s;}
.zone-card p { color: var(--neon); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; transform: translateY(20px); opacity: 0; transition: 0.3s;}
.zone-card:hover { border-color: var(--neon); box-shadow: 0 0 30px rgba(194, 24, 91, 0.2);}
.zone-card:hover .zone-bg { transform: scale(1.1); filter: grayscale(0%);}
.zone-card:hover h3 { color: var(--neon); }
.zone-card:hover p { transform: translateY(0); opacity: 1; }

/* --- CENNIK --- */
.pricing-section { background: var(--bg-light); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: center;}
.price-card { background: var(--bg); border: 1px solid rgba(255,255,255,0.1); padding: 50px 30px; text-align: center; border-radius: 8px; transition: 0.3s;}
.price-card.featured { border-color: var(--neon); transform: scale(1.05); box-shadow: 0 10px 40px rgba(194, 24, 91, 0.15); background: linear-gradient(180deg, rgba(194,24,91,0.05) 0%, var(--bg) 100%);}
.price-name { font-size: 1.2rem; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; color: var(--text-dim);}
.price-card.featured .price-name { color: var(--neon); }
.price-amount { font-size: 3.5rem; font-weight: 900; margin-bottom: 20px; line-height: 1;}
.price-amount small { font-size: 1rem; color: var(--text-dim); font-weight: 400;}
.price-desc { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 30px; line-height: 1.5; min-height: 45px;}

/* --- STOPKA / KONTAKT --- */
footer { padding: 60px 20px; text-align: center; background: #000; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1000px; margin: 0 auto 40px auto; text-align: left;}
.footer-col h4 { color: var(--neon); font-weight: 900; text-transform: uppercase; margin-bottom: 20px; font-size: 1.2rem;}
.footer-col p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.8; margin-bottom: 10px;}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; color: #666; font-size: 0.8rem; }

@media(max-width: 992px) {
    .bento-grid, .zones-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
    .bento-box.large { grid-column: span 1; }
    .hero h1 { font-size: 3.5rem; }
    .price-card.featured { transform: scale(1); }
    .nav-links { display: none; }
}