/* style.css - Mis Hà English landing page */
:root{
  --navy: #1a2b5c;
  --red: #cc0000;
  --bg: #f8f9fb;
  --text: #222;
  --accent: rgba(204,0,0,0.08);
  font-synthesis: none;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:"Segoe UI", Roboto, Arial, sans-serif;color:var(--text);background:var(--bg);line-height:1.45}
.container{max-width:1100px;margin:0 auto;padding:20px}
.header-inner{display:flex;justify-content:space-between;align-items:center}
.brand{display:flex;gap:12px;align-items:center}
.logo{width:84px;height:auto;border-radius:8px;object-fit:contain;background:white;padding:6px}
.brand h1{margin:0;font-size:20px;color:var(--navy)}
.slogan{margin:0;font-size:12px;color:var(--navy);opacity:0.9}

.nav a{margin-left:12px;color:var(--navy);text-decoration:none;font-weight:600}
.nav a:hover{text-decoration:underline}

.banner{position:relative;margin-top:12px;border-radius:12px;overflow:hidden;background:#fff}
.banner img{width:100%;height:320px;object-fit:cover;display:block;filter:brightness(0.85)}
.banner-text{position:absolute;left:32px;top:32px;color:white;text-shadow:0 2px 8px rgba(0,0,0,0.45)}
.banner-text h2{margin:0;font-size:36px;color:var(--navy)}
.banner-text p{margin:6px 0 0;font-size:16px;color:var(--navy)}

.card{background:#fff;border-radius:10px;padding:20px;margin:18px 0;box-shadow:0 6px 18px rgba(26,43,92,0.06);border-left:6px solid var(--navy)}
.card h2{margin-top:0;color:var(--navy)}

.table-wrap{overflow-x:auto}
table{width:100%;border-collapse:collapse}
table thead th{background:var(--navy);color:#fff;padding:10px;text-align:left}
table tbody td{padding:10px;border-bottom:1px solid #eee}

#ranking-list{padding-left:20px;margin:0}
#news-list .news-item{padding:10px;border-left:4px solid var(--red);margin-bottom:8px;background:var(--accent);border-radius:6px}

.site-footer{padding:18px 0;text-align:center;color:#666;font-size:14px}
@media (max-width:720px){
  .header-inner{flex-direction:column;align-items:flex-start;gap:12px}
  .banner img{height:220px}
  .banner-text h2{font-size:26px}
}
