:root {
    --primary: #0a192f;
    --accent: #ff4d00;
    --text-main: #f8f9fa;
    --text-dim: #a8b2d1;
    --card-bg: rgba(255, 255, 255, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }

body {
    background-color: var(--primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }

/* NAVBAR */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.logo { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: 1px; }
.logo img { height: 45px; }

.nav-links { display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--text-dim); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

/* MAIN WRAPPER */
.main-content { margin-top: 120px; padding-bottom: 50px; }

.page { display: none; animation: fadeInUp 0.5s ease forwards; }
.page.active { display: block; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* HERO SECTION */
.hero-box { padding: 60px 0; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 40px; }
.hero-box h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); line-height: 1.1; font-weight: 900; margin-bottom: 25px; }
.highlight { color: var(--accent); }
.hero-box p { max-width: 600px; color: var(--text-dim); font-size: 1.1rem; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.f-card { background: var(--card-bg); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }
.f-card i { font-size: 2rem; color: var(--accent); margin-bottom: 20px; }

/* MATCHES */
.title-main { font-size: 2rem; margin-bottom: 30px; font-weight: 900; text-transform: uppercase; }
.match-card { 
    background: var(--card-bg); 
    padding: 25px; 
    border-radius: 15px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 15px;
    border-left: 5px solid #333;
}
.match-card.win { border-left-color: #00ff88; }
.match-card.loss { border-left-color: #ff3333; }
.m-date { display: block; font-size: 0.8rem; color: var(--text-dim); }
.m-opp { font-weight: 700; font-size: 1.1rem; }
.m-result { font-weight: 900; font-size: 1.2rem; }

/* REKRUTACJA */
.join-wrapper { background: var(--accent); color: white; padding: 60px; border-radius: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; }
.join-info h2 { font-size: 2.5rem; margin-bottom: 15px; }
.join-list { list-style: none; margin-top: 20px; }
.join-list li { margin-bottom: 10px; display: flex; gap: 10px; align-items: center; }
.main-btn { background: var(--primary); color: white; padding: 20px 40px; border-radius: 50px; text-decoration: none; font-weight: 900; text-transform: uppercase; transition: 0.3s; }
.main-btn:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* STATS */
.stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; }
.s-box { background: var(--card-bg); padding: 30px; border-radius: 20px; text-align: center; }
.s-box h4 { font-size: 2.5rem; color: var(--accent); }
.s-box.highlight { border: 1px solid var(--accent); }

/* CONTACT */
.contact-card { text-align: center; padding: 80px 20px; }
.insta-btn { display: inline-flex; align-items: center; gap: 10px; background: white; color: black; padding: 15px 30px; border-radius: 10px; text-decoration: none; font-weight: 700; margin-top: 20px; transition: 0.3s; }
.insta-btn:hover { background: var(--accent); color: white; }

/* MOBILE */
.burger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; }
.burger span { width: 30px; height: 3px; background: white; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .burger { display: flex; }
    .hero-box h1 { font-size: 2.8rem; }
    .join-wrapper { padding: 30px; text-align: center; justify-content: center; }
}
