*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#0b0f16;
color:white;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
position:absolute;
width:100%;
z-index:100;
padding:25px 0;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:1.8rem;
font-weight:800;
color:#1ED760;
}

nav a{
color:white;
text-decoration:none;
margin-left:25px;
font-weight:500;
}

.btn-primary{
background:#1ED760;
color:#000;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:700;
display:inline-block;
}

.btn-secondary{
border:1px solid #fff;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
color:white;
display:inline-block;
}

.hero{
height:100vh;
background:url('football-player.jpg') center center/cover;
display:flex;
align-items:center;
position:relative;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.7);
}

.hero-content{
position:relative;
z-index:2;
max-width:700px;
}

.tag{
background:rgba(30,215,96,.15);
color:#1ED760;
padding:10px 20px;
border-radius:50px;
display:inline-block;
margin-bottom:25px;
}

.hero h1{
font-size:4rem;
font-weight:800;
margin-bottom:20px;
}

.hero p{
font-size:1.2rem;
opacity:.85;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:15px;
}

.stats{
padding:80px 0;
background:#111827;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
text-align:center;
gap:30px;
}

.stats h2{
font-size:3rem;
color:#1ED760;
}

.features{
padding:120px 0;
}

.section-header{
text-align:center;
margin-bottom:60px;
}

.section-header h2{
font-size:2.8rem;
margin-bottom:15px;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:#131c2a;
padding:35px;
border-radius:15px;
}

.card h3{
margin-bottom:15px;
}

.clubs{
padding:120px 0;
background:#111827;
text-align:center;
}

.clubs ul{
list-style:none;
margin-top:40px;
}

.clubs li{
margin-bottom:15px;
font-size:1.1rem;
}

.cta{
padding:120px 0;
text-align:center;
}

.cta h2{
font-size:3rem;
margin-bottom:20px;
}

.cta p{
margin-bottom:30px;
opacity:.85;
}

footer{
padding:60px 0;
background:#05080d;
text-align:center;
}

footer p{
margin:10px 0;
opacity:.8;
}