:root {
  --navy: #163764;
  --teal: #1f8da6;
  --blue: #1877f2;
  --blue-dark: #0d5bd1;
  --bg: #ffffff;
  --surface: rgba(255,255,255,0.72);
  --surface-solid: #ffffff;
  --text: #162338;
  --muted: #5f6d7e;
  --shadow: 0 18px 50px rgba(22, 55, 100, 0.12);
  --sidebar-width: 290px;
  --radius: 26px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: radial-gradient(circle at top, #f9fcff 0%, #ffffff 45%, #f6fafc 100%); color: var(--text); overflow-x: hidden; scrollbar-gutter: stable; }
a { color: inherit; }
.page-shell { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.site-main { padding-bottom: 48px; }
.menu-toggle { position: fixed; top: 18px; left: 18px; z-index: 1005; width: 48px; height: 48px; display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px; background: var(--surface-solid); border: 1px solid rgba(22, 55, 100, 0.12); border-radius: 14px; box-shadow: var(--shadow); cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.menu-toggle:hover { transform: translateY(-1px); box-shadow: 0 22px 55px rgba(22,55,100,0.16); }
.menu-toggle span { display: block; width: 20px; height: 2px; border-radius: 999px; background: var(--navy); transition: transform 0.28s ease, opacity 0.25s ease, width 0.28s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); width: 22px; }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); width: 22px; }
.sidebar { position: fixed; top: 0; left: 0; width: var(--sidebar-width); height: 100vh; background: linear-gradient(180deg, rgba(15,39,71,0.98) 0%, rgba(23,59,105,0.98) 100%); color: #fff; transform: translateX(-100%); transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); z-index: 1004; padding: 78px 20px 24px; box-shadow: var(--shadow); backdrop-filter: blur(16px); }
body.sidebar-open .sidebar { transform: translateX(0); }
.sidebar__brand { font-weight: 800; letter-spacing: 0.15em; font-size: 1.1rem; color: #fff; border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; padding: 10px 12px; display: inline-block; margin-bottom: 18px; }
.sidebar__nav { display: grid; gap: 10px; }
.sidebar__link { color: rgba(255,255,255,0.92); text-decoration: none; padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,0.06); transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease; position: relative; overflow: hidden; }
.sidebar__link::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.16), transparent); transform: translateX(-120%); transition: transform 0.5s ease; }
.sidebar__link:hover::after, .sidebar__link.active::after, .sidebar__link--page:hover::after { transform: translateX(120%); }
.sidebar__link:hover, .sidebar__link.active { background: rgba(255,255,255,0.18); transform: translateX(4px); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12); }
.sidebar__link.active { border-left: 4px solid #7dd3fc; padding-left: 10px; }
.overlay { position: fixed; inset: 0; background: rgba(8, 18, 34, 0.36); opacity: 0; pointer-events: none; transition: opacity 0.28s ease; z-index: 1003; }
body.sidebar-open .overlay { opacity: 1; pointer-events: auto; }
.eyebrow { margin: 0 0 10px; color: var(--teal); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.hero, .contact, .section-card, .about-hero { padding-block: 34px; }
.hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 34px; align-items: center; min-height: calc(100vh - 120px); }
.hero__content h1, .about-hero__intro h1, .section-heading h2, .section-heading h1 { margin: 0; color: var(--navy); line-height: 1.02; letter-spacing: -0.03em; }
.hero__content h1 { font-size: clamp(2.7rem, 5.5vw, 5.2rem); max-width: 12ch; }
.hero__tagline { font-size: clamp(1.02rem, 1.9vw, 1.18rem); line-height: 1.75; color: var(--muted); max-width: 62ch; margin-top: 18px; }
.hero__logo-card, .about-hero__panel, .section-card, .contact-card, .contact-form, .about-card, .form-card { background: var(--surface); border: 1px solid rgba(22,55,100,0.08); box-shadow: var(--shadow); border-radius: var(--radius); backdrop-filter: blur(14px); }
.hero__logo-card { justify-self: center; width: 100%; max-width: 560px; padding: 34px 24px 28px; text-align: center; }
.logo { width: min(520px, 100%); height: auto; object-fit: contain; display: block; margin-inline: auto; }
.social-links { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 22px; }
.social-links a { width: 54px; height: 54px; display: inline-grid; place-items: center; border-radius: 16px; background: #f3f8fc; box-shadow: 0 8px 20px rgba(22, 55, 100, 0.08); color: var(--blue); transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease; }
.social-links a:hover { transform: translateY(-3px) scale(1.04); background: #eaf2ff; color: var(--blue-dark); box-shadow: 0 14px 24px rgba(24,119,242,0.14); }
.social-links svg { width: 26px; height: 26px; fill: currentColor; display: block; }
.section-heading { margin-bottom: 20px; padding: 26px}
.section-heading h2, .section-heading h1 { font-size: clamp(1.9rem, 4vw, 3rem); padding: 26px}
.section-card { padding: 26px; margin-top: 22px; }
.about-grid, .contact-grid, .form-grid { display: grid; gap: 18px; }
.about-grid { grid-template-columns: 1.15fr 0.85fr 0.85fr; }
.about-card { padding: 22px; }
.about-card--large { min-height: 100%; }
.about-card h3, .contact-card h3, .about-card h2 { margin-top: 0; color: var(--navy); }
.about-card p, .contact-card p, .about-card li, .form-note, .contact-list li { color: var(--text); line-height: 1.75; }
.contact-grid { grid-template-columns: 0.9fr 1.1fr; padding: 26px}
.contact-card, .contact-form, .form-card { padding: 24px; }
.contact-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.contact-list strong { color: var(--navy); }
.contact-list a { color: var(--blue); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.form-row { display: grid; gap: 8px; }
.form-row label { font-weight: 700; color: var(--navy); }
.form-row input, .form-row textarea { width: 100%; border: 1px solid rgba(22,55,100,0.12); background: rgba(255,255,255,0.85); border-radius: 14px; padding: 14px 16px; font: inherit; color: var(--text); outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(24,119,242,0.1); transform: translateY(-1px); }
.form-row textarea { resize: vertical; min-height: 140px; }
.entry-form, .modern-form { display: grid; gap: 18px; }
.form-check label { display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; color: var(--text); }
.form-check input { margin-top: 4px; }
.form-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.form-note { margin: 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; border: none; border-radius: 14px; padding: 14px 18px; font-weight: 700; cursor: pointer; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 22px rgba(22,55,100,0.12); }
.btn--primary { background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; }
.btn--primary:hover { filter: brightness(1.03); }
.site-footer { border-top: 1px solid rgba(22, 55, 100, 0.08); background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(246,250,252,0.95)); }
.site-footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-block: 18px; flex-wrap: wrap; }
.site-footer p { margin: 0; color: var(--muted); }
.footer-socials { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-socials a { color: var(--blue); text-decoration: none; font-weight: 700; }
.footer-socials a:hover { text-decoration: underline; }
.scroll-indicator { position: fixed; top: 0; left: 0; height: 4px; width: 100%; z-index: 1006; background: rgba(24,119,242,0.08); }
.scroll-indicator span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--navy), var(--blue), var(--teal)); box-shadow: 0 0 10px rgba(24,119,242,0.45); transition: width 0.08s linear; }
.reveal-section { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-section.is-visible { opacity: 1; transform: translateY(0); }
.section-fade { position: relative; overflow: hidden; }
.section-fade::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent, rgba(24,119,242,0.05), transparent); transform: translateX(-120%); animation: sheen 8s linear infinite; pointer-events: none; }
@keyframes sheen { 0% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
.float-slow { animation: float 6.5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
@media (max-width: 991px) { .hero, .about-grid, .contact-grid, .form-grid { grid-template-columns: 1fr; } .hero { min-height: auto; padding-top: 30px; } .hero__content h1 { max-width: none; } .hero__logo-card { max-width: 100%; } .page-shell { width: min(1120px, calc(100% - 20px)); } .site-main { padding-bottom: 30px; } }
@media (max-width: 640px) { .hero__content h1, .section-heading h2, .section-heading h1 { font-size: clamp(2rem, 10vw, 3rem); } .social-links a { width: 50px; height: 50px; } .social-links svg { width: 24px; height: 24px; } .contact-card, .contact-form, .form-card, .about-card, .hero__logo-card, .section-card { padding: 18px; } .sidebar { width: 270px; } }

/* 1. Make the container wider and taller */
.contact-form-container {
  max-width: 6600px;         /* Increased from 500px */
  margin: 0px auto;        /* Increased spacing above/below form */
  padding: 70px;            /* Increased from 30px for more breathing room */
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* 2. Increase label text size */
.form-group label {
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333333;
  font-size: 16px;          /* Increased from 14px */
}

/* 3. Make input fields taller with larger text */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 16px 18px;       /* Increased from 12px 14px */
  border: 1px solid #cccccc;
  border-radius: 6px;
  font-size: 18px;          /* Increased from 16px */
  color: #333333;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* 4. Make the message box taller by default */
.form-group textarea {
  resize: vertical;
  min-height: 15px;        /* Increased from 12px */
}

/* 5. Make the submit button larger */
.submit-btn {
  width: 100%;
  padding: 20px;            /* Increased from 14px */
  background-color: #0076ff;
  color: #ffffff;
  border: none;
  border-radius: 18px;
  font-size: 16px;          /* Increased from 16px */
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

    .table-wrap {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 10px;
	  text-align: center;
    }

    .group-title {
      display: block;
      margin-bottom: 10px;
      font-size: 1.08rem;
      font-weight: 800;
      color: var(--text);
    }

    .teams {
      margin: 0;
      padding-left: 18px;
      line-height: 1.55;
      color: var(--muted);
      font-size: 1rem;
    }

    .teams li {
      margin: 0 0 6px 0;
      padding: 5px 8px;
      border-radius: 8px;
      background: rgba(46,175,74,0.16); /* green highlight for alive teams */
      color: #0f4d1f;
      font-weight: 600;
    }

    /* Change this class to red when a team is knocked out */
    .teams li.knocked-out {
      background: var(--knocked);
      color: #fff;
      font-weight: 700;
    }

    /* Optional alias class if you want to keep using alive explicitly */
    .teams li.alive {
      background: rgba(46,175,74,0.16);
      color: #0f4d1f;
      font-weight: 600;
    }

    .note {
      margin-top: 12px;
      color: #444;
      font-size: 0.95rem;
      line-height: 1.45;
      text-align: center;
    }

 
    .score-section {
      margin-top: 28px;
      padding-top: 12px;
    }
    .score-section h3 {
      text-align: center;
      color: #0d2f66;
      margin: 0 0 14px;
      font-size: 1.35rem;
    }
    .score-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }
    .score-card {
      background: var(--panel);
      border: 1px solid var(--panel-border);
      border-radius: 16px;
      padding: 14px;
      box-shadow: var(--shadow);
      overflow-x: auto;
    }
    .score-card h4 {
      margin: 0 0 10px;
      color: var(--text);
      font-size: 1.05rem;
    }
    .score-table {
      width: 100%;
      min-width: 560px;
      border-collapse: collapse;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
    }
    .score-table th,
    .score-table td {
      border: 1px solid rgba(0,0,0,0.08);
      padding: 8px 10px;
      font-size: 0.95rem;
    }
    .score-table thead th {
      background: rgba(0,0,0,0.03);
      font-size: 0.95rem;
      font-weight: 800;
    }
    .score-total {
      margin-top: 10px;
      text-align: right;
      font-weight: 800;
      color: #0d2f66;
    }
    .leaderboard-wrap {
      margin-top: 18px;
      overflow-x: auto;
    }
    .leaderboard {
      width: 100%;
      min-width: 420px;
      border-collapse: collapse;
      background: #fff;
      border: 1px solid var(--panel-border);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .leaderboard th,
    .leaderboard td {
      border: 1px solid rgba(0,0,0,0.08);
      padding: 10px 12px;
      font-size: 0.95rem;
    }
    .leaderboard thead th {
      background: rgba(0,0,0,0.03);
      font-weight: 800;
    }
    @media (max-width: 900px) {
      .score-grid { grid-template-columns: 1fr; }
      .score-table { min-width: 520px; }
    }
