:root{
  --bg:#0b1020;
  --panel:#0f1731;

  /* Blue/Cyan theme */
  --brand:#3b82f6;
  --brand2:#22d3ee;

  --text:#ffffff;
  --muted:#cbd5e1;

  --stroke:rgba(255,255,255,.08);
  --shadow:0 10px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
body{
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Arial,sans-serif;
  margin:0;
  color:var(--text);
  background:
    radial-gradient(900px 420px at 15% 10%, rgba(34,211,238,.25), transparent 60%),
    radial-gradient(800px 420px at 90% 15%, rgba(59,130,246,.25), transparent 55%),
    linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.55)),
    var(--bg);
  min-height:100dvh;
}

/* Header close to 5Movies */
.site-header{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:18px 16px;
  background:rgba(15,23,49,.75);
  border-bottom:1px solid var(--stroke);
  backdrop-filter: blur(8px);
}

.text-logo{
  display:inline-flex;
  align-items:baseline;
  gap:6px;
  font-weight:800;
  letter-spacing:.5px;
  line-height:1;
  user-select:none;
}

.text-logo .mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:42px;
  border-radius:12px;

  background:linear-gradient(to right, var(--brand), var(--brand2));
  box-shadow:0 12px 26px rgba(34,211,238,.20);

  font-size:18px;
  color:#fff;
}

.text-logo .name{
  font-size:28px;
  color:#fff;
  text-shadow:1px 2px rgba(0,0,0,.45);
}

.subtitle{
  margin-top:8px;
  font-size:12.5px;
  color:rgba(255,255,255,.75);
  text-align:center;
}

/* Article like 5Movies */
article{
  max-width:900px;
  margin:32px auto;
  padding:0 16px;
}

h1{
  text-align:center;
  margin:16px 0 8px;
  text-transform:uppercase;
  letter-spacing:.6px;
  text-shadow:1px 2px rgba(0,0,0,.55);
}

h2,h3{margin-top:28px}
p,ul{color:var(--muted);line-height:1.75}
ul{padding-left:18px}
img{max-width:100%;height:auto;border-radius:14px;border:1px solid var(--stroke);box-shadow:var(--shadow)}

.center{text-align:center}

/* CTA */
.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:240px;
  height:56px;
  margin:24px auto;
  border:0;
  cursor:pointer;
  font-weight:800;
  border-radius:999px;
  text-decoration:none;

  background-image:linear-gradient(to right, var(--brand), var(--brand2));
  color:#06101f;

  box-shadow:0 10px 26px rgba(59,130,246,.25);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.cta:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(34,211,238,.22);
  filter:saturate(1.1);
}

.cta.small{height:50px;width:220px}

.table-wrapper{overflow-x:auto;margin:20px 0;border-radius:16px;border:1px solid var(--stroke);background:rgba(15,23,49,.6)}
table{width:100%;border-collapse:collapse;min-width:720px}
th,td{padding:12px 14px;border-bottom:1px solid rgba(255,255,255,.08);text-align:left}
th{background:rgba(34,211,238,.10);color:#eaf6ff;font-size:13px}
tbody tr:hover{background:rgba(255,255,255,.04)}

blockquote{
  background:rgba(15,23,49,.65);
  color:#fff;
  padding:18px;
  margin:20px 0;
  border-left:5px solid var(--brand2);
  border-radius:14px;
  box-shadow:var(--shadow);
}

footer{
  text-align:center;
  color:rgba(255,255,255,.72);
  font-size:.9rem;
  padding:18px;
  border-top:1px solid var(--stroke);
  background:rgba(0,0,0,.12);
  margin-top:24px;
}

a{color:#a5f3fc}

/* New panels */
.panel{
  margin:22px 0;
  padding:16px;
  background:rgba(15,23,49,.60);
  border:1px solid var(--stroke);
  border-radius:16px;
  box-shadow:var(--shadow);
}

.panel-title{margin-top:0}

.muted{color:rgba(203,213,225,.82)}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  color:#e8f7ff;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.chip:hover{background:rgba(255,255,255,.10)}

.grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin-top:14px;
}

.card{
  background:rgba(15,23,49,.60);
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:14px;
  box-shadow:var(--shadow);
}
.card h3{margin:0 0 6px}

.two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:10px;
}

.faq{
  margin-top:10px;
  background:rgba(15,23,49,.60);
  border:1px solid var(--stroke);
  border-radius:14px;
  padding:12px 14px;
}
.faq summary{cursor:pointer;font-weight:800;color:#fff}

@media (max-width:900px){
  .grid{grid-template-columns:1fr}
  .two{grid-template-columns:1fr}
  table{min-width:560px}
}

@media (max-width:600px){
  h1{font-size:1.3rem}
  .cta{width:100%;max-width:340px}

  /* Responsive table like your example */
  table, thead, tbody, th, td, tr{display:block}
  thead tr{position:absolute;top:-9999px;left:-9999px}
  tr{margin-bottom:14px}
  td{border:none;position:relative;padding-left:50%}
  td:before{
    content:attr(data-label);
    position:absolute;
    left:10px;
    top:10px;
    font-weight:800;
    font-size:.65rem;
    text-transform:uppercase;
    color:#fff;
  }
}
