* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: #0f172a; color: #f8fafc; }

.navbar { display: flex; justify-content: space-between; padding: 20px 5%; background: #1e293b; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
.logo { font-size: 24px; font-weight: 800; color: #fff; }
.logo span { color: #facc15; }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { color: #cbd5e1; text-decoration: none; font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: #facc15; }

.ad-container { text-align: center; margin: 20px auto; max-width: 728px; background: #1e293b; border-radius: 8px; padding: 10px; border: 1px solid #334155; }
.ad-label { font-size: 10px; color: #64748b; text-transform: uppercase; margin-bottom: 5px; }

.container { display: flex; gap: 20px; padding: 20px 5%; flex-wrap: wrap; }
.main-content { flex: 3; min-width: 300px; }
.sidebar { flex: 1; min-width: 300px; }

.card { background: #1e293b; padding: 20px; border-radius: 12px; margin-bottom: 20px; border: 1px solid #334155; }
.card h2 { color: #facc15; margin-bottom: 15px; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; }

.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 8px; background: #000; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.news-item { background: #0f172a; border-radius: 8px; overflow: hidden; transition: transform 0.2s; border: 1px solid #334155; }
.news-item:hover { transform: translateY(-5px); }
.news-item img { width: 100%; height: 150px; object-fit: cover; }
.news-content { padding: 15px; }
.news-content h3 { font-size: 1rem; margin-bottom: 8px; }
.news-content p { font-size: 0.85rem; color: #94a3b8; }

.match-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #334155; }
.match-row:last-child { border-bottom: none; }
.team { font-weight: 600; }
.score { font-weight: 800; color: #facc15; }