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

body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #222;
    line-height: 1.5;
}

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

/* TOP BAR */
.topbar {
    background: #043920;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

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

.topbar .social img {
    width: 20px;
    margin-left: 10px;
}

/* NAVBAR */
.navbar {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.nav-logo {
    height: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 22px;
}

.nav-menu a {
    color: #222;
    text-decoration: none;
    font-weight: bold;
}

/* HERO */
.hero {
    background: url('asset/footer-bg.jpg') center/cover no-repeat;
    padding: 100px 0;
    position: relative;
}

.hero-overlay {
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    padding: 40px;
    max-width: 600px;
    margin: auto;
    border-radius: 10px;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
}

/* PROMO BUTTONS */
.promo-section {
    background: #fff;
    padding: 30px 0;
    text-align: center;
}

.promo-btn {
    background: #0c6b3f;
    color: #fff;
    padding: 14px 28px;
    margin: 0 10px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

/* MATCH SECTION */
.match-section {
    padding: 40px 0;
}

.match-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.match-meta {
    font-size: 14px;
    opacity: 0.7;
}

.match-date {
    font-weight: bold;
    margin-bottom: 20px;
}

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

.team {
    text-align: center;
}

.team img {
    width: 55px;
    display: block;
    margin: 5px auto;
}

.match-score a {
    font-size: 32px;
    font-weight: bold;
    color: #0c6b3f;
    text-decoration: none;
}

/* NEWS */
.news-section {
    padding: 50px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-item img {
    width: 100%;
    border-radius: 8px;
}

.news-item h3 {
    margin: 12px 0;
    font-size: 20px;
}

.news-date {
    font-size: 13px;
    opacity: 0.6;
}

/* STANDINGS */
.standings-table {
    width: 100%;
    background: #fff;
    border-collapse: collapse;
    margin-top: 20px;
}

.standings-table th,
.standings-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.standings-table img {
    width: 30px;
    margin-right: 8px;
    vertical-align: middle;
}

/* RESULTS */
.results-section {
    padding: 40px 0;
}

.results-list li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* FOOTER */
.footer {
    background: #043920;
    color: #fff;
    padding: 25px 0;
    text-align: center;
    margin-top: 40px;
}