    /* ===== Original cybermisfits.gg styles (unchanged) ===== */
    :root{
      --accent:#ff8c2f; /* orange */
      --dark:#0f1720;
      --muted:#94a3b8;
      --card:#0b1320;
      --glass: rgba(255,255,255,0.03);
    }
    *{box-sizing:border-box}
    body{font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial; margin:0; background:linear-gradient(180deg,#071021 0%, #081223 60%); color:#e6eef6; -webkit-font-smoothing:antialiased;}
    header{display:flex;align-items:center;justify-content:space-between;padding:14px 28px;background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent);backdrop-filter: blur(6px);position:sticky;top:0;z-index:10;border-bottom:1px solid rgba(255,255,255,0.03)}
    .brand{display:flex;align-items:center;gap:12px}
    .brand img{width:56px;height:56px;object-fit:contain;border-radius:8px}
    .brand h1{font-family:'Russo One',sans-serif;margin:0;font-size:20px;letter-spacing:1px;color:var(--accent)}
    nav{display:flex;gap:18px;align-items:center}
    a.navlink{color:var(--muted);text-decoration:none;font-weight:600}
    a.navlink:hover{color:#fff}
    .btn{background:var(--accent);color:#08101a;padding:8px 14px;border-radius:8px;text-decoration:none;font-weight:700}

    .container{max-width:1100px;margin:28px auto;padding:0 20px}

    /* Hero */
    .hero{display:grid;grid-template-columns:1fr 380px;gap:24px;align-items:center;margin-top:10px}
    .hero-card{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));padding:28px;border-radius:14px;border:1px solid rgba(255,255,255,0.03)}
    .hero h2{font-family:'Russo One',sans-serif;margin:0 0 8px;font-size:36px}
    .hero p{color:var(--muted);margin:0 0 18px}
    .cta-row{display:flex;gap:12px}
    .logo-card{display:flex;flex-direction:column;align-items:center;gap:16px;padding:18px;border-radius:12px;background:var(--card)}
    .logo-card img{width:220px;height:220px;object-fit:contain}

    /* Sections */
    section{margin-top:22px}
    .section-title{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
    .grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
    .card{background:var(--glass);padding:14px;border-radius:12px;border:1px solid rgba(255,255,255,0.03)}
    .player{display:flex;gap:12px;align-items:center}
    .avatar{width:68px;height:68px;border-radius:10px;background:linear-gradient(135deg,#0b1220,#132134);display:flex;align-items:center;justify-content:center;font-weight:800;color:var(--accent);font-family:'Russo One';font-size:20px}
    .player h4{margin:0;font-size:16px}
    .player p{margin:0;color:var(--muted);font-size:13px}

    table{width:100%;border-collapse:collapse}
    th,td{padding:10px;border-bottom:1px dashed rgba(255,255,255,0.03);text-align:left}
    th{color:var(--muted);font-weight:600}

    footer{margin-top:28px;padding:20px;text-align:center;color:var(--muted);font-size:13px}

    /* responsive */
    @media (max-width:980px){
      .hero{grid-template-columns:1fr;}
      .grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:600px){
      nav{display:none}
      header{padding:10px}
      .grid{grid-template-columns:1fr}
      .logo-card img{width:160px;height:160px}
      .brand h1{font-size:16px}
      .hero h2{font-size:28px}
    }

/* ===== CMS additions (keep the original look; only cover new content) ===== */

/* The original page had unclosed <b> tags that made Sponsors, Contact and the
   footer bold. This reproduces that look; switch it off in Admin > Settings. */
.legacy-bold{font-weight:900}
.legacy-bold #sponsors .section-title{font-weight:400}

/* "About" text card: same look as the original single muted paragraph */
.about-body{color:var(--muted)}
.about-body p{margin:0 0 1em}
.about-body > :last-child{margin-bottom:0}

/* Player details line inside the heading (was a <p> nested in the <h4>) */
.player .details{display:block;margin:0;color:var(--muted);font-size:13px}
.player.has-profile{cursor:pointer}
.player.has-profile:hover{border-color:rgba(255,140,47,0.35)}

/* Rich text written in the admin editor */
.rich img{max-width:100%;height:auto}
.rich iframe{max-width:100%}
.rich a{color:var(--accent)}
.rich table{margin:8px 0}
.rich blockquote{margin:0 0 1em;padding-left:14px;border-left:3px solid var(--accent);color:var(--muted)}
.news-stack > .card + .card{margin-top:14px}
.news-meta{color:var(--muted);font-size:13px;margin:0 0 8px}
.more-link{display:inline-block;margin-top:12px;color:var(--accent);text-decoration:none;font-weight:600}
.more-link:hover{color:#fff}
.page-card{padding:22px}
.pager{display:flex;justify-content:space-between;margin-top:14px}
.pager a{color:var(--accent);text-decoration:none;font-weight:600}
.contact-card .contact-spacer{color:var(--muted);font-size:14px}
.contact-card .contact-links{text-align:center}

/* Player profile pop-up */
.profile-modal{position:fixed;inset:0;background:rgba(3,8,16,0.75);display:none;align-items:center;justify-content:center;z-index:50;padding:20px}
.profile-modal.open{display:flex}
.profile-box{background:#0b1320;border:1px solid rgba(255,255,255,0.08);border-radius:14px;max-width:620px;width:100%;max-height:85vh;overflow:auto;padding:22px;position:relative}
.profile-box h3{font-family:'Russo One',sans-serif;margin:0 0 12px;color:var(--accent)}
.profile-close{position:absolute;top:10px;right:12px;background:none;border:0;color:var(--muted);font-size:26px;cursor:pointer;line-height:1}
.profile-close:hover{color:#fff}

@media (max-width:600px){
  .rich table{display:block;overflow-x:auto}
}

/* Menu links: stop section headings from hiding under the sticky header */
section[id]{scroll-margin-top:100px}
@media (max-width:600px){section[id]{scroll-margin-top:90px}}
