@import url("navbar.css");
@import url("home.css");
@import url("players.css");
@import url("news.css");
@import url("live.css");
@import url("about.css");
@import url("contact.css");
@import url("footer.css");
@import url("responsive.css");

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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f7fa;
    color:#222;
    margin:0;
    padding-top:95px;
}

.hero{
    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

    background:
        linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
        url("../images/stadium.jpg");

    background-size:cover;

    background-position:center;

    padding-top:80px;
}

.hero-buttons{
    margin-top:35px;
}

.btn{
    display:inline-block;
    padding:14px 30px;
    margin:10px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}.

.btn-primary{
    background:#ffffff;
    color:#0B6E4F;
}

.btn-primary:hover{
    background:#F9C80E;
    color:#222;
}

.btn-secondary{
    border:2px solid white;
    color:white;
}

.btn-secondary:hover{
    background:white;
    color:#0B6E4F;
}

.menu a{
    position:relative;
}

.menu a::after{

    content:"";

    position:absolute;

    width:0;

    height:3px;

    left:0;

    bottom:-8px;

    background:#00A8E8;

    transition:.3s;
}

.menu a:hover::after{

    width:100%;
}

/* ==========================
   Latest News
========================== */

.latest-news{
    padding:80px 10%;
    background:#f5f7fa;
}

.latest-news h2{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
    color:#00695c;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.news-card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    transition:.3s;
}

.news-card:hover{
    transform:translateY(-10px);
}

.news-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.news-card h3{
    padding:20px;
}

.news-card p{
    padding:0 20px;
    color:#666;
}

.news-card a{
    display:inline-block;
    margin:20px;
    text-decoration:none;
    color:#009688;
    font-weight:bold;
}

/* ==========================
   LIVE SCORES
========================== */

.live-scores{
    padding:80px 8%;
    background:#ffffff;
}

.live-scores h2{
    text-align:center;
    font-size:42px;
    color:#00695c;
    margin-bottom:50px;
}

.score-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.score-card{

    background:white;

    border-radius:15px;

    padding:30px;

    box-shadow:0 8px 25px rgba(0,0,0,.12);

    transition:.3s;

}

.score-card:hover{

    transform:translateY(-8px);

}

.status{

    display:inline-block;

    background:#e53935;

    color:white;

    padding:6px 14px;

    border-radius:30px;

    font-size:13px;

    margin-bottom:20px;

}

.upcoming-status{

    background:#1976d2;

}

.score-card h3{

    margin-bottom:15px;

    color:#00695c;

}

.score-card p{

    margin:10px 0;

    color:#555;

}

/* ==========================
   FEATURED PLAYERS
========================== */

.featured-players{
    padding:80px 8%;
    background:#f7f9fc;
}

.featured-players h2{
    text-align:center;
    font-size:42px;
    color:#00695c;
    margin-bottom:50px;
}

.player-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.player-card{

    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.12);

    transition:.3s;

    text-align:center;

}

.player-card:hover{

    transform:translateY(-8px);

}

.player-card img{

    width:100%;

    height:280px;

    object-fit:cover;

}

.player-card h3{

    margin-top:20px;

    color:#00695c;

}

.player-card p{

    margin:8px 0;

    color:#555;

}

.btn-profile{

    display:inline-block;

    margin:20px 0;

    padding:10px 24px;

    background:#00695c;

    color:white;

    text-decoration:none;

    border-radius:30px;

    transition:.3s;

}

.btn-profile:hover{

    background:#009688;

}

/*==========================
PLAYER HERO
==========================*/

.player-hero{

    padding:80px 10%;

    background:#f5f7fa;

}

.player-container{

    display:flex;

    align-items:center;

    gap:60px;

    flex-wrap:wrap;

}

.player-image img{

    width:320px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.player-info{

    flex:1;

}

.player-info h1{

    font-size:52px;

    color:#00695c;

    margin-bottom:15px;

}

.player-info p{

    font-size:20px;

    margin-bottom:15px;

    line-height:1.7;

}

.country{

    font-weight:bold;

}

.role{

    color:#00A8E8;

    font-weight:bold;

}

/*==========================
CAREER STATS
==========================*/

.career-stats{

    padding:80px 10%;

    background:white;

}

.career-stats h2{

    text-align:center;

    color:#00695c;

    font-size:38px;

    margin-bottom:40px;

}

.career-stats table{

    width:100%;

    border-collapse:collapse;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.career-stats th{

    background:#00695c;

    color:white;

    padding:18px;

}

.career-stats td{

    padding:18px;

    text-align:center;

    border-bottom:1px solid #eee;

}

.career-stats tr:hover{

    background:#f7f7f7;

}

/* Career Highlights */

.career-highlights{

padding:80px 0;

background:#fff;

}

.career-highlights h2{

text-align:center;

font-size:42px;

color:#00695c;

margin-bottom:50px;

}

.highlights-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}

.highlight-box{

background:#f7f7f7;

padding:30px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.highlight-box:hover{

transform:translateY(-8px);

}

.highlight-box h3{

margin-bottom:15px;

color:#00695c;

}

.highlight-box p{

line-height:1.8;

color:#555;

}

.achievements{

padding:80px 0;

background:#ffffff;

}

.achievements h2{

text-align:center;

font-size:42px;

margin-bottom:50px;

color:#00695c;

}

.achievement-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}

.achievement-card{

background:white;

padding:30px;

border-radius:15px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.achievement-card:hover{

transform:translateY(-8px);

}

.achievement-card h3{

color:#009688;

margin-bottom:15px;

font-size:24px;

}

.achievement-card p{

color:#555;

}

.timeline{

padding:80px 0;

background:#f7f9fc;

}

.timeline h2{

text-align:center;

font-size:42px;

margin-bottom:60px;

color:#00695c;

}

.timeline-item{

display:flex;

gap:30px;

margin-bottom:35px;

align-items:flex-start;

}

.year{

min-width:100px;

background:#009688;

color:#fff;

padding:15px;

border-radius:10px;

font-size:22px;

font-weight:bold;

text-align:center;

}

.content{

background:#fff;

padding:25px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

flex:1;

}

.content h3{

margin-bottom:10px;

color:#00695c;

}

.content p{

color:#555;

line-height:1.6;

}

.records{

padding:80px 0;

background:#ffffff;

}

.records h2{

text-align:center;

font-size:42px;

margin-bottom:50px;

color:#00695c;

}

.record-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}

.record-card{

background:#f8f9fa;

padding:35px;

text-align:center;

border-radius:15px;

box-shadow:0 8px 25px rgba(0,0,0,.08);

transition:.3s;

}

.record-card:hover{

transform:translateY(-8px);

background:#00695c;

color:white;

}

.record-card:hover p{

color:white;

}

.record-card h3{

font-size:34px;

color:#009688;

margin-bottom:15px;

}

.record-card:hover h3{

color:#fff;

}

.record-card p{

color:#555;

}

.related-news{

    padding:80px 0;

    background:#f8f9fa;

}

.related-news h2{

    text-align:center;

    font-size:40px;

    color:#00695c;

    margin-bottom:50px;

}

.related-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.related-card{

    background:#fff;

    padding:30px;

    border-radius:15px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.related-card:hover{

    transform:translateY(-8px);

}

.related-card h3{

    margin-bottom:15px;

}

.related-card p{

    margin-bottom:20px;

    color:#666;

}

.related-card a{

    color:#00695c;

    font-weight:bold;

    text-decoration:none;

}

/* Recent Performance */

.recent-performance{

    padding:80px 0;

    background:#f5f7fa;

}

.recent-performance h2{

    text-align:center;

    font-size:42px;

    color:#00695c;

    margin-bottom:50px;

}

.performance-table{

    overflow-x:auto;

}

.performance-table table{

    width:100%;

    border-collapse:collapse;

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.performance-table th{

    background:#00695c;

    color:#fff;

    padding:18px;

}

.performance-table td{

    padding:18px;

    text-align:center;

    border-bottom:1px solid #eee;

}

.performance-table tr:hover{

    background:#f0f9f8;

}

.won{

    color:green;

    font-weight:bold;

}

.lost{

    color:red;

    font-weight:bold;

}

/*==========================
PLAYER SEARCH
==========================*/

.player-search{

    text-align:center;

    margin:40px 0;

}

.player-search input{

    width:60%;

    max-width:500px;

    padding:15px 20px;

    border:2px solid #009688;

    border-radius:40px;

    font-size:18px;

    outline:none;

}

.player-search input:focus{

    border-color:#00695c;

}

/* ==========================
   PLAYER CARDS
========================== */

.players-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

    margin-top:40px;

}

.player-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.player-card:hover{

    transform:translateY(-10px);

}

.player-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    display:block;

}

.player-card h3{

    margin-top:20px;

    color:#00695c;

}

.player-card p{

    color:#555;

    margin:10px 0;

}

.profile-btn{

    display:inline-block;

    margin:20px;

    padding:12px 28px;

    background:#00695c;

    color:#fff;

    text-decoration:none;

    border-radius:30px;

    transition:.3s;

}

.profile-btn:hover{

    background:#004d40;

}

/* ========================= */
/* NEWS PAGE */
/* ========================= */

.news-hero{

padding:140px 20px 80px;

text-align:center;

}

.news-hero h1{

font-size:52px;

color:#00695c;

margin-bottom:15px;

}

.news-hero p{

font-size:20px;

color:#666;

}

.news-grid{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:35px;

padding:50px 20px 100px;

}

.news-card{

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.3s;

}

.news-card:hover{

transform:translateY(-10px);

}

.news-card img{

width:100%;

height:220px;

object-fit:cover;

}

.news-card h2{

padding:20px;

font-size:28px;

}

.news-card p{

padding:0 20px;

color:#555;

line-height:1.7;

}

.news-card a{

display:inline-block;

padding:20px;

font-weight:bold;

color:#00796b;

text-decoration:none;

}

.hero-buttons{
    margin-top:35px;
}

.btn{
    display:inline-block;
    padding:14px 32px;
    margin:8px;
    border-radius:40px;
    text-decoration:none;
    font-weight:700;
    color:#fff;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.4);
    backdrop-filter:blur(10px);
}

.btn:hover{
    background:#006d6f;
    border-color:#006d6f;
    color:#fff;
}

.hero-stats{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-top:45px;
}

.stat-card{
    width:180px;
    padding:20px;
    text-align:center;
    background:#ffffff;
    border:1px solid #ddd;
    border-radius:15px;
    color:#222;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.stat-card h3{
    font-size:32px;
    margin-bottom:8px;
}

.stat-card p{
    font-size:16px;
}

.hero-content{

    max-width:1000px;

    margin:auto;
}

/* =========================
   FEATURED PLAYERS
========================= */

.players-section{
    padding:80px 8%;
    background:#fff;
}

.players-title{
    text-align:center;
    font-size:48px;
    color:#006d6f;
    margin-bottom:60px;
    font-weight:800;
}

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

.player-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.player-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.player-card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.player-info{
    padding:25px;
    text-align:center;
}

.player-info h3{
    font-size:28px;
    margin-bottom:10px;
}

.player-role{
    color:#666;
    margin-bottom:18px;
}

.player-btn{
    display:inline-block;
    padding:12px 26px;
    background:#006d6f;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
    transition:.3s;
}

.player-btn:hover{
    background:#009688;
}