:root { 
    --bg-main: #ffffff;
    --header-red: #DB0007; 
    --header-dark: #02142B; 
    --table-head-bg: #f5f5f7;
    --text-dark: #111111; 
    --text-muted: #666666; 
    --border-light: #e0e0e0;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
body { background: var(--bg-main); color: var(--text-dark); }

.header { background: var(--header-red); padding: 20px; text-align: center; box-shadow: 0 2px 10px rgba(219, 0, 7, 0.15); }
.header h1 { font-size: 22px; color: #ffffff; font-weight: 800; }
.header span { color: var(--header-dark); text-decoration: none; }
.header p { font-size: 13px; color: rgba(255, 255, 255, 0.9); margin-top: 4px; font-weight: 500; }

.container { max-width: 1000px; margin: 0 auto; padding: 25px 15px 40px; }
.card { background: #ffffff; border-radius: 8px; margin-bottom: 30px; }
.card-title { font-size: 16px; font-weight: 800; margin-bottom: 15px; color: var(--header-dark); padding-bottom: 8px; border-bottom: 2px solid var(--header-red); display: inline-block; }

.table-responsive { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; background: #ffffff; }
th { background: var(--table-head-bg); color: #333333; padding: 12px 10px; text-align: center; font-size: 13px; font-weight: 600; border: none; border-bottom: 1px solid var(--border-light); }
td { padding: 14px 10px; text-align: center; border-bottom: 1px solid var(--border-light); color: var(--text-dark); font-weight: 400; }

.team-logo-cell { width: 28px; text-align: right; padding-right: 0; vertical-align: middle; }
.team-logo-cell img { width: 22px; height: 22px; object-fit: contain; display: inline-block; vertical-align: middle; }
.team-name-cell { text-align: left !important; padding-left: 10px; font-weight: 500; vertical-align: middle; }
td.poin-cell { font-weight: 800 !important; color: #000000; }

.grid-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.match-item { background: #ffffff; border: 1px solid var(--border-light); border-radius: 8px; padding: 15px; margin-bottom: 15px; box-shadow: 0 1px 4px rgba(0,0,0,0.02); }
.match-item-header { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-muted); font-weight: 600; margin-bottom: 12px; }
.match-item-body { display: flex; justify-content: space-between; align-items: center; }
.match-team { flex: 1; font-weight: 700; font-size: 14px; color: var(--header-dark); }
.match-team.right { text-align: right; }
.match-score-badge { background: var(--header-red); color: #ffffff; padding: 4px 12px; border-radius: 4px; font-weight: 800; font-size: 15px; margin: 0 10px; }

.match-details { margin-top: 12px; padding-top: 10px; border-top: 1px dashed var(--border-light); display: flex; justify-content: space-between; font-size: 11px; color: var(--text-muted); }
.match-details .home-scorers, .match-details .away-scorers { flex: 1; }
.match-details .home-scorers { text-align: right; padding-right: 15px; }
.match-details .away-scorers { text-align: left; padding-left: 15px; }
.match-details .goal-item { margin-bottom: 3px; font-weight: 500; }

/* SPONSOR SECTION */
.sponsor-section { background: #ebebeb; padding: 40px 20px; text-align: center; border-top: 1px solid #dcdcdc; }
.sponsor-title { font-size: 12px; font-weight: 800; color: #888; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 25px; }
.sponsor-list { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 40px; max-width: 900px; margin: 0 auto; }
.sponsor-list img { max-height: 45px; opacity: 0.6; filter: grayscale(100%); transition: 0.3s ease; }
.sponsor-list img:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.05); }

/* DARK FOOTER SECTION */
.dark-footer { background: var(--header-dark); color: #ffffff; padding: 40px 20px 30px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.social-links { display: flex; gap: 25px; margin-bottom: 10px; }
.social-links a { color: #ffffff; opacity: 0.7; transition: 0.2s; display: inline-block; }
.social-links a:hover { opacity: 1; transform: translateY(-3px); }
.social-links svg { width: 26px; height: 26px; fill: currentColor; }

.footer-quote { font-size: 15px; font-style: italic; color: #cbd5e1; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 0; width: 100%; max-width: 600px; line-height: 1.6; }
.footer-quote span { font-size: 12px; font-style: normal; color: #94a3b8; }
.footer-copy { font-size: 12px; color: #64748b; font-weight: 500; margin-top: 10px; }

@media (max-width: 768px) { .grid-two-col { grid-template-columns: 1fr; } }