/* ====== Theme tokens ====== */
:root{
  --bg: #121212;
  --panel: rgba(0,0,0,.72);
  --panel-2: rgba(20,20,20,.85);
  --text: #e9e9e9;
  --muted: #b9b9b9;

  --red: #e63946;
  --red-2: #8b0000;
  --line: rgba(255,255,255,.10);

  --radius: 14px;
  --shadow: 0 14px 40px rgba(0,0,0,.55);
}

/* ====== Base ====== */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(230,57,70,.22), transparent 60%),
    url("https://www.transparenttextures.com/patterns/dark-mosaic.png"),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}

/* Better link styling */
a{ color:#ffd1d6; text-decoration:none; }
a:hover{ text-decoration:underline; }

/* ====== Header / Hero ====== */
header{
  background: linear-gradient(to bottom, rgba(10,10,10,.98), rgba(18,18,18,.9));
  border-bottom: 1px solid rgba(139,0,0,.65);
  padding: 28px 18px 22px;
  text-align:center;
}

.logo{
  display:block;
  margin:0 auto 14px;
  max-width: 220px;
  height:auto;
  border: 1px solid rgba(139,0,0,.65);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,.55);
}

/* Title */
.title{
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  text-transform: uppercase;
  margin:0;
  letter-spacing: 2px;
}

.title .words{
  display:block;
  color: var(--red-2);
  text-shadow: 2px 2px 0 #000, 0 10px 26px rgba(0,0,0,.55);
}

/* ====== Main container ====== */
main{
  width: min(980px, calc(100% - 28px));
  margin: 26px auto 34px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
}

section{
  margin: 0 0 28px;
  padding: 0;
}

/* Headings */
section h2{
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  color: #ff5a66;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  letter-spacing: .4px;
}

p{ color: var(--text); margin: 0 0 10px; }
section p:last-child{ margin-bottom: 0; }

/* ====== Cards ====== */
.mod-entry{
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-left: 6px solid rgba(139,0,0,.85);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0,0,0,.45);
}

.mod-entry h3{
  margin: 0 0 10px;
  color: #ff6b73;
  font-size: 1.15rem;
}

/* Lists */
ul{
  margin: 10px 0 0 18px;
  padding:0;
  color: var(--muted);
}
li{ margin: 8px 0; }
li a{ color:#ffd1d6; text-decoration: underline; text-decoration-color: rgba(255,209,214,.45); }
li a:hover{ text-decoration-color: rgba(255,209,214,1); }

/* ====== CTA Button ====== */
.big-download-button{
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 18px auto 0;
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(230,57,70,1), rgba(170,24,35,1));
  color: #fff;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  font-weight: 800;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 14px 34px rgba(0,0,0,.55);
  transition: transform .18s ease, filter .18s ease;
}

.big-download-button:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
}

/* ====== Video ====== */
.video-container{
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;

  border: 1px solid rgba(139,0,0,.75);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0,0,0,.55);
  background: rgba(0,0,0,.4);
  margin-top: 12px;
}

.video-container iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

/* ====== Footer ====== */
footer{
  text-align:center;
  background: rgba(10,10,10,.95);
  color: #a9a9a9;
  padding: 14px 10px;
  font-size: .9rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ====== Mobile tweaks ====== */
@media (max-width: 640px){
  main{ padding: 18px; }
  .logo{ max-width: 190px; }
  ul{ margin-left: 16px; }
}