/* MM88 VN — Classic Las Vegas Style (Burgundy, Matte Black, Copper Gold) */
:root{
  --bg:#0d0d0f; /* matte black */
  --burgundy:#5a0f1b;
  --burgundy-2:#7a1624;
  --gold:#c88b3a; /* copper-gold */
  --gold-2:#e0b56a;
  --text:#e9e5df;
  --muted:#b8afa6;
  --card:#131316;
  --maxw:1200px;
}
*{box-sizing:border-box}
html{font-size:16px}
body{
  margin:0; background:linear-gradient(180deg,var(--bg),#101014 20%,var(--burgundy) 120%);
  color:var(--text); font:400 16px/1.75 Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
a{color:var(--gold)} a:hover{color:var(--gold-2)}
img{max-width:100%; height:auto; display:block}
.container{max-width:var(--maxw); margin:0 auto; padding:0 20px}

/* Header */
header{
  position:sticky; top:0; z-index:50; backdrop-filter:saturate(140%) blur(8px);
  background:rgba(13,13,15,.75); border-bottom:1px solid rgba(200,139,58,.25);
}
.bar{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:10px 0}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand img{width:36px; height:36px}
.brand span{font:600 18px/1 "Georgia", "Times New Roman", serif; letter-spacing:.6px; color:var(--gold)}
nav ul{list-style:none; display:flex; gap:18px; margin:0; padding:0}
nav a{color:var(--text); text-decoration:none; font-weight:600}
nav a.cta{color:#111; background:linear-gradient(180deg,var(--gold),var(--gold-2)); padding:10px 14px; border-radius:8px}

/* Hero */
.hero{position:relative; overflow:hidden; border-bottom:1px solid rgba(200,139,58,.25)}
.hero-wrap{display:grid; grid-template-columns:1.2fr .8fr; gap:28px; align-items:center; padding:48px 0}
.hero .media{border-radius:14px; overflow:hidden; box-shadow:0 10px 40px rgba(0,0,0,.45)}
.kicker{color:var(--gold-2); font:600 12px/1.1 ui-sans-serif,system-ui; letter-spacing:2px; text-transform:uppercase}
.h1{font:700 40px/1.1 "Georgia", "Times New Roman", serif; color:#f6f2ec; letter-spacing:.5px; margin:10px 0 12px}
.lead{color:var(--muted); font-size:18px}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.btn{display:inline-block; text-decoration:none; padding:12px 16px; border-radius:10px; font-weight:700}
.btn-gold{color:#111; background:linear-gradient(180deg,var(--gold),var(--gold-2))}
.btn-ghost{border:1px solid rgba(200,139,58,.45); color:var(--gold-2)}

/* Sections */
section{padding:42px 0; border-bottom:1px solid rgba(200,139,58,.14)}
.sec-h{font:700 28px/1.2 "Georgia","Times New Roman",serif; margin:0 0 12px; color:#f2e8db}
.sec-sub{color:var(--muted); margin-bottom:22px}

/* Content Block: two-column (Left/Right), then stacked */
.block-2{display:grid; grid-template-columns:1.1fr .9fr; gap:26px; align-items:center}
.block-2 .pic{border-radius:12px; overflow:hidden; box-shadow:0 6px 24px rgba(0,0,0,.38)}
.block-2 .h3{font:700 22px/1.25 "Georgia","Times New Roman",serif; margin:6px 0 10px}
.block-2 p{margin:8px 0}

/* Content Grid: 3-up/4-up cards */
.grid{display:grid; gap:16px}
.grid.cols-3{grid-template-columns:repeat(3,1fr)}
.grid.cols-4{grid-template-columns:repeat(4,1fr)}
.card{background:var(--card); border:1px solid rgba(200,139,58,.12); border-radius:12px; overflow:hidden}
.card .cover{aspect-ratio: 16/10; object-fit:cover}
.card .pad{padding:14px}
.card .t{font:700 18px/1.25 "Georgia","Times New Roman",serif}
.card .d{color:var(--muted); margin-top:6px}
.card .cta{margin-top:10px}

/* Footer */
footer{padding:28px 0; color:var(--muted); font-size:14px}
.foot{display:flex; flex-wrap:wrap; gap:16px; align-items:center; justify-content:space-between}
.foot a{color:var(--gold-2)}

/* Utilities */
.muted{color:var(--muted)} .center{text-align:center}
.sp-12{height:12px} .sp-18{height:18px} .sp-24{height:24px}
.tag{display:inline-block; border:1px solid rgba(200,139,58,.35); color:var(--gold-2); padding:4px 8px; border-radius:999px; font-size:12px}

/* Responsive */
@media (max-width: 980px){
  .hero-wrap{grid-template-columns:1fr; padding:30px 0}
  .h1{font-size:32px}
  .block-2{grid-template-columns:1fr}
  .grid.cols-4{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 640px){
  nav ul{display:none}
  .grid.cols-3,.grid.cols-4{grid-template-columns:1fr}
  .h1{font-size:28px}
}

