     :root {
      --bg: #160802;
      --card: #6e2a0d69;
      --ink: #ff7001;
      --muted: #f7eeee;
      --brand: #acd321;
      --nav: #241105;
      --nav-ink: #ff7001;
      --shadow: 0 10px 25px rgba(0,0,0,0.10);
      --radius: 16px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }
    html { scroll-behavior: smooth; }
    body { background: var(--bg); color: var(--ink); }

.custom-divider {
  width: 50%; 
  height: 3px; 
  background-color: #ff7001; 
  margin: 50px auto; 
}

    /* NAV */
    nav {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--nav);
      color: var(--nav-ink);
      padding: 14px 22px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    }

    .nav-inner {
      display: grid;
      grid-template-columns: 1fr auto 1fr; /* left / center / right */
      align-items: center;
      gap: 12px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 18px;
      justify-content: flex-start;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 18px;
      align-items: center;
    }

    .nav-links a {
      color: var(--nav-ink);
      text-decoration: none;
      font-weight: 600;
      font-size: 30px;
      letter-spacing: 0.2px;
      padding: 10px 5px;
      border-radius: 10px;
      transition: 0.2s;
    }

    .nav-links a:hover {
      color: #f7ba4a;
    }

    .logo-left {
      display: flex;
      justify-content: left;
      align-items: left;
    }

    .logo-mark {
      width: 500px;
      height: 200px;
      border-radius: 10px;
      background: transparent;
      display: grid;
      place-items: left;
      font-weight: 900;
      color: #0b1220;
      overflow: hidden;
    }

    .logo-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .logo-text {
      font-weight: 800;
      font-size: 24px;
      letter-spacing: 0.5px;
      white-space: nowrap;
    }

    .nav-right {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 5px;
    }

    .socials a {
      width: 70px;
      height: 70px;
      display: inline-grid;
      place-items: center;
      text-decoration: none;
      transition: 0.2s;
    }

    .socials a:hover {
      transform: translateY(-1px);
     }

    .socials svg { width: 32px; height: 32px; fill: #ff7001; opacity: 0.95; }

    /* SECTIONS */
    section {
      padding: 30px 22px;
      max-width: 1200px;
      margin: 0 auto;
    }

    h2 {
      font-size: 40px;
      margin-bottom: 20px;
      font-weight: 900;
    }

    .subtitle {
      color: var(--muted);
      max-width: 750px;
      line-height: 1.6;
      margin-bottom: 26px;
    }

    .content-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .content-container h1,
    .content-container h2 {
      margin-bottom: 20px;
      font-size: x-large;
      font-weight: 700;
      color: #ffffff;}
    .content-container h3 {
      margin-bottom: 12px;
      font-size: large;
      font-weight: 700;
      color: #ffffff;
    }

    .content-container p {
      margin-bottom: 20px;
      font-size: 18px;
      line-height: 1.8;
      color: #ffffff;
    }

    .content-container strong {
      font-weight: 700;
      color: #111827;
    }

    .content-container a {
      color: #ff7001;
      text-decoration: none;
      font-weight: 600;
    }

    .content-container a:hover {
      text-decoration: underline;
    }

    /* Optional blockquote style */
  .content-container blockquote {
      margin: 20px 0;
      padding: 10px;
      background-color: #6e2a0d49;
      color: #ffffff;
      border-radius: 8px;
}


    /* GAMES GRID */
    .games-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 32px;
    }

    @media (max-width: 920px) {
      .games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 620px) {
      .games-grid { grid-template-columns: 1fr; }
      .nav-inner { grid-template-columns: auto 1fr auto; }
      .logo-text { display: none; }
    }

    .game-card {
      background: var(--card);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid rgba(17,24,39,0.06);
      display: flex;
      flex-direction: column;
      min-height: 650px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .game-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .game-hero {
      position: relative;
      height: 380px;
      background: #0b1220;
    }

    /* Game Card Images*/
    .hero-1 { background: url('rabanner.png') center/cover no-repeat; }
    .hero-2 { background: url('aabanner.png') center/cover no-repeat; }
    .hero-3 { background: url('pogbanner.png') center/cover no-repeat; }

    .game-titlebar {
      padding: 20px 20px 12px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: flex-start;
    }

    .game-titlebar h3 {
      font-size: 24px;
      line-height: 1.2;
      font-weight: 700;
    }

    .pill {
      font-size: 14px;
      color: #e5e7e4;
      background: #9445107a;
      padding: 8px 14px;
      border-radius: 999px;
      font-weight: 700;
      white-space: nowrap;
    }

    .game-desc {
      padding: 0 20px 20px;
      color: var(--muted);
      line-height: 1.65;
      font-size: 15px;
      flex: 1;
    }

    /* Bottom icons overlay on the game image */
    .hero-links {
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: 12px;
      display: flex;
      gap: 10px;
      justify-content: flex-start;
      align-items: center;
      pointer-events: none; /* container ignores clicks; children re-enable */
    }

    .hero-links a {
      pointer-events: auto;
      width: 38px;
      height: 38px;
      display: inline-grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(104, 102, 102, 0.411);
      border: 1px solid rgba(255, 255, 255, 0.473);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      text-decoration: none;
      transition: 0.2s;
    }

    .hero-links a:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,0.18);
      border-color: rgba(255,255,255,0.28);
    }

    .hero-links svg {
      width: 20px;
      height: 20px;
      fill: #ffffff;
      opacity: 0.95;
    }

    /* ABOUT */
    #about {
      margin-bottom: 8px;
      text-align: center;
    }

    #about h2 {
      margin: 0 auto 8px;
    }

    #about .subtitle {
      margin: 0 auto 26px;
      color:#ffffff;
      font-size: 15.5px;
      letter-spacing: .5px;
    }

    #about a {
      color: var(--nav-ink);
      text-decoration: none;
      font-weight: 200;
      font-size: 18px;
      letter-spacing: 0.2px;
      padding: 10px 20px;
      display: inline-grid;
      place-items: center;
      text-decoration: none;
      transition: 0.2s;
    }

    #about a:hover {
      color: #f7ba4a;
      transform: translateY(-1px);
    }

    /* Tiny footer */
    footer {
      text-align: center;
      color: var(--muted);
      padding: 30px 22px 50px;
    }


 /* LEADERSHIP ROW */

.leadership-grid {
display: grid;
grid-template-columns: repeat(5, 240px);
justify-content: center;
gap: 20px;
margin-bottom: 70px;
flex-wrap: wrap;
}

/* Larger leadership cards */

.leadership-card {
width: relative;
}

.leadership-card .team-image {
height: 300px;
}

.leadership-card h3 {
font-size: 20px;
}
   
/* TEAM SECTION */

.team-section {
  padding: 80px 0;
}

.team-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.team-divider {
margin-top: 40px;
}

/* GRID */

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 240px);
  justify-content: center;
  gap: 20px;
}

/* CARD */

.team-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */

.team-image {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

/* both images stacked */
.team-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

/* default visible */
.img-default {
  opacity: 1;
}

/* hover image hidden initially */
.img-hover {
  opacity: 0;
}

/* on hover: swap */
.team-card:hover .img-default {
  opacity: 0;
}

.team-card:hover .img-hover {
  opacity: 1;
}
/* SOCIAL GLASS BAR */

.team-social-bar {
position: absolute;
left: 0;
right: 0;
bottom: 0;

display: flex;
justify-content: center;
gap: 14px;

padding: 10px 0;

background: linear-gradient(
to top,
rgba(0,0,0,0.65),
rgba(0,0,0,0.35),
transparent
);

backdrop-filter: blur(6px);
}

/* ICON BUTTON */

.team-social-bar a {
width: 30px;
height: 30px;

display: grid;
place-items: center;

border-radius: 6px;

background: rgba(255,255,255,0.15);
transition: transform 0.2s ease, background 0.2s ease;
}

.team-social-bar svg {
width: 16px;
height: 16px;
fill: white;
}

.team-social-bar a:hover {
transform: translateY(-2px);
background: rgba(255,255,255,0.35);
}

/* ICON BUTTON */
.social-link {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-link svg {
  width: 15px;
  height: 15px;
  fill: #ffffff;
  transition: fill 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
}

/* PLATFORM HOVER COLORS */
.social-link[aria-label="LinkedIn"]:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}

.social-link[aria-label="X"]:hover {
  background: #111111;
  border-color: #111111;
}

.social-link[aria-label="Threads"]:hover {
  background: #000000;
  border-color: #000000;
}

.social-link[aria-label="Instagram"]:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  border-color: transparent;
}

.social-link[aria-label="TikTok"]:hover {
  background: #000000;
  border-color: #000000;
}

.social-link[aria-label="Bluesky"]:hover {
  background: #1185fe;
  border-color: #1185fe;
}

/* INFO */

.team-info {
  text-align: center;
  padding: 18px 16px 22px;
}

.team-info h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.team-info p {
  color: orange;
  font-weight: 600;
  font-size: 14px;
}

/* MAILING LIST */

/* FORM BOX */

.form-box {
  background: #8b5e3963;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* FORM LAYOUT */

.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* FORM FIELDS */

.form-field {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-field label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-field input {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  transition: border 0.2s ease;
}

.form-field input:focus {
  outline: none;
  border-color: #ff7a00;
}

/* FIELDSET */

.form-fieldset {
  text-align: left;
}

.form-fieldset p {
  margin-bottom: 10px;
}

.form-fieldset fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* MAILCHIMP TEXT */

.form p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
}

.form a {
  color: #ff7a00;
  text-decoration: none;
}

.form a:hover {
  text-decoration: underline;
}

/* SUBMIT BUTTON */

.form-submit {
  margin-top: 10px;
}

.form-submit button {
  background: #ff7a00;
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-submit button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* RESPONSE MESSAGES */

.response {
  font-size: 14px;
  margin-top: 10px;
}

/* MOBILE */

@media (max-width: 600px) {

  .merch-page h1 {
    font-size: 28px;
  }

  .report-bug-box {
    padding: 30px 20px;
  }

}