:root {
      --reyset-green: #008f55;
      --reyset-green-dark: #07332d;
      --reyset-green-deep: #041f1c;
      --reyset-mint: #dff6ec;
      --reyset-line: #d8e7df;
      --reyset-ink: #102522;
      --reyset-muted: #60746f;
      --reyset-bg: #f6faf7;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      color: var(--reyset-ink);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--reyset-bg);
      letter-spacing: 0;
    }

    .admin-body {
      min-height: 100vh;
      background: #f3f7f4;
    }

    .admin-shell {
      min-height: 100vh;
    }

    .admin-login {
      min-height: 100vh;
      display: grid;
      place-items: center;
      padding: 1.5rem;
      background: linear-gradient(180deg, var(--reyset-green-dark), var(--reyset-green-deep));
    }

    .admin-login-box {
      width: min(100%, 430px);
      padding: 2rem;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 22px 80px rgba(4, 31, 28, 0.24);
    }

    .admin-login-box h1 {
      margin: 1.5rem 0;
      font-size: 1.75rem;
      font-weight: 900;
      color: var(--reyset-green-dark);
    }

    .admin-form {
      display: grid;
      gap: 0.75rem;
    }

    .admin-form label {
      color: var(--reyset-muted);
      font-size: 0.88rem;
      font-weight: 800;
    }

    .admin-form input {
      width: 100%;
      min-height: 46px;
      padding: 0.65rem 0.85rem;
      color: var(--reyset-ink);
      border: 1px solid var(--reyset-line);
      border-radius: 6px;
      outline: none;
    }

    .admin-form input:focus {
      border-color: var(--reyset-green);
      box-shadow: 0 0 0 3px rgba(0, 143, 85, 0.12);
    }

    .admin-message {
      min-height: 1.5rem;
      margin: 0.75rem 0 0;
      color: #b42318;
      font-size: 0.92rem;
      font-weight: 700;
    }

    .admin-panel {
      min-height: 100vh;
      background: #f3f7f4;
    }

    .admin-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem 1.5rem;
      color: #fff;
      background: var(--reyset-green-dark);
    }

    .admin-topbar h1 {
      margin: 0.75rem 0 0;
      font-size: clamp(1.35rem, 3vw, 2rem);
      font-weight: 900;
    }

    .admin-table-wrap {
      width: min(100% - 2rem, 1500px);
      margin: 1.5rem auto;
      padding: 1rem;
      border: 1px solid var(--reyset-line);
      border-radius: 8px;
      background: #fff;
    }

    .admin-table-header {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .admin-table-header h2 {
      margin: 0.35rem 0 0;
      color: var(--reyset-green-dark);
      font-size: 1.45rem;
      font-weight: 900;
    }

    .admin-table-wrap table.dataTable {
      font-size: 0.9rem;
    }

    .admin-table-wrap .dt-button {
      border: 0;
      border-radius: 999px;
      color: #fff;
      background: var(--reyset-green);
      font-weight: 800;
    }

    @media (max-width: 640px) {
      .admin-topbar,
      .admin-table-header {
        align-items: stretch;
        flex-direction: column;
      }
    }

    .site-shell {
      min-height: 100vh;
      overflow: hidden;
      /*
      background:
        radial-gradient(circle at top right, rgba(0, 143, 85, 0.12), transparent 34rem),
        linear-gradient(180deg, #ffffff 0%, #f4faf6 55%, #ffffff 100%);
      */
    }

    .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(14px);
      /*
      background: rgba(255, 255, 255, 0.84);
      */
      border-bottom: 1px solid rgba(216, 231, 223, 0.72);
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      color: #fff;
      font-weight: 800;
      background: var(--reyset-green);
      border-radius: 50%;
    }

    .nav-pill {
      border: 1px solid var(--reyset-line);
      border-radius: 999px;
      padding: 0.35rem;
      background: #fff;
    }

    .nav-pill a {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 0 1rem;
      color: var(--reyset-muted);
      font-size: 0.9rem;
      font-weight: 700;
      text-decoration: none;
      border-radius: 999px;
      white-space: nowrap;
    }

    .nav-pill a:hover,
    .nav-pill a:focus {
      color: #fff;
      background: var(--reyset-green);
    }

    .hero {
      position: relative;
      padding: 5.5rem 0 4rem;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--reyset-green);
      font-size: 0.82rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--reyset-green);
    }

    .fw-black {
      font-weight: 900;
    }

    .hero h1 {
      max-width: 760px;
      margin: 1rem 0;
      color: var(--reyset-green-dark);
      font-size: clamp(2.8rem, 8vw, 6.5rem);
      line-height: 0.9;
      font-weight: 900;
    }

    .hero h1 span {
      color: var(--reyset-green);
    }

    .hero-copy {
      max-width: 590px;
      color: var(--reyset-muted);
      font-size: 1.08rem;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      margin-top: 1.7rem;
    }

    .btn-reyset {
      --bs-btn-bg: var(--reyset-green);
      --bs-btn-border-color: var(--reyset-green);
      --bs-btn-hover-bg: #007246;
      --bs-btn-hover-border-color: #007246;
      --bs-btn-color: #fff;
      --bs-btn-hover-color: #fff;
      min-height: 48px;
      padding-inline: 1.35rem;
      border-radius: 999px;
      font-weight: 800;
    }

    .btn-outline-reyset {
      --bs-btn-color: var(--reyset-green-dark);
      --bs-btn-border-color: var(--reyset-line);
      --bs-btn-hover-bg: var(--reyset-green-dark);
      --bs-btn-hover-border-color: var(--reyset-green-dark);
      --bs-btn-hover-color: #fff;
      min-height: 48px;
      padding-inline: 1.35rem;
      border-radius: 999px;
      font-weight: 800;
      background: #fff;
    }

    .hero-visual {
      position: relative;
      min-height: 500px;
      border-radius: 6px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%),
        linear-gradient(180deg, var(--reyset-green-dark), var(--reyset-green-deep));
      box-shadow: 0 28px 80px rgba(7, 51, 45, 0.18);
    }

    .pitch {
      position: absolute;
      inset: 6%;
      border: 2px solid rgba(255, 255, 255, 0.24);
      border-radius: 4px;
    }

    .pitch::before,
    .pitch::after {
      content: "";
      position: absolute;
      inset: 0;
      margin: auto;
    }

    .pitch::before {
      width: 2px;
      height: 100%;
      background: rgba(255, 255, 255, 0.18);
    }

    .pitch::after {
      width: 120px;
      height: 120px;
      border: 2px solid rgba(255, 255, 255, 0.18);
      border-radius: 50%;
    }

    .rank-card {
      position: absolute;
      left: 10%;
      right: 10%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 66px;
      padding: 0.9rem 1.1rem;
      border-radius: 6px;
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(10px);
    }

    .rank-card strong {
      font-size: 2rem;
      line-height: 1;
    }

    .rank-card span {
      color: rgba(255, 255, 255, 0.76);
      font-size: 0.82rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    .rank-card:nth-child(2) {
      top: 10%;
      background: var(--reyset-green);
    }

    .rank-card:nth-child(3) {
      top: 25%;
      transform: translateX(8%);
    }

    .rank-card:nth-child(4) {
      top: 40%; 
    }

    .rank-card:nth-child(5) {
      top: 55%;
       transform: translateX(8%);
    }
    .rank-card:nth-child(6) {
      top: 70%; 
      
    }
      
    .logo-fifa {margin-bottom: -20px;
    display: block;}

    .ball {
      position: absolute;
      right: 30%;
      bottom: 8%;
      width: 130px;
      height: 130px;
    }
    .ball img {
        width: 100%;
    }

    .section-band {
      padding: 4rem 0;
    }

    .dark-band {
      color: #fff;
      background: var(--reyset-green-dark);
    }

    .prize-item h1 {
        color: var(--reyset-green);
        font-weight: bold;
    }

    .prize-item,
    .rule-item {
      height: 100%;
      padding: 1.25rem;
      border-radius: 6px;
      background: #fff;
      border: 1px solid var(--reyset-line);
    }

    .prize-item b,
    .rule-item b {
      display: block;
      color: var(--reyset-green);
      font-size: 0.85rem;
      text-transform: uppercase;
    }

    .prize-item strong,
    .rule-item strong {
      display: block;
      margin-top: 0.25rem;
      color: var(--reyset-green-dark);
      font-size: 1.2rem;
    }

    .form-panel {
      padding: clamp(1.1rem, 3vw, 2rem);
      border-radius: 6px;
      background: #fff;
      border: 1px solid var(--reyset-line);
      box-shadow: 0 24px 60px rgba(16, 37, 34, 0.08);
    }

    .form-label {
      color: var(--reyset-green-dark);
      font-weight: 800;
    }

    .form-control,
    .form-select {
      min-height: 48px;
      border-color: var(--reyset-line);
      border-radius: 6px;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--reyset-green);
      box-shadow: 0 0 0 0.18rem rgba(0, 143, 85, 0.16);
    }

    .autoComplete_wrapper {
      width: 100%;
    }

    .autoComplete_wrapper > input {
      width: 100%;
      height: 48px;
      color: var(--reyset-ink);
      border: 1px solid var(--reyset-line);
      border-radius: 6px;
      background: #fff;
      font-size: 1rem;
    }

    .autoComplete_wrapper > input:focus {
      color: var(--reyset-ink);
      border-color: var(--reyset-green);
      box-shadow: 0 0 0 0.18rem rgba(0, 143, 85, 0.16);
    }

    .autoComplete_wrapper > ul {
      border-radius: 6px;
      border-color: var(--reyset-line);
      box-shadow: 0 18px 50px rgba(16, 37, 34, 0.12);
    }

    .autoComplete_wrapper > ul > li mark {
      color: var(--reyset-green);
    }

    .position-badge {
      width: 42px;
      height: 42px;
      display: grid;
      flex: 0 0 42px;
      place-items: center;
      color: #fff;
      font-weight: 900;
      border-radius: 50%;
      background: var(--reyset-green);
    }

    .prediction-row {
      display: flex;
      gap: 0.85rem;
      align-items: end;
    }

    .prediction-row .field-wrap {
      flex: 1;
      min-width: 0;
    }

    .footer-strip {
      color: rgba(255, 255, 255, 0.84);
      background: var(--reyset-green-deep);
    }

    @media (max-width: 991.98px) {
      .hero {
        padding-top: 3.5rem;
      }

      .hero-visual {
        min-height: 420px;
      }
    }

    @media (max-width: 575.98px) {
      .nav-wrap nav {
        flex-direction: column;
        justify-content: center !important;
      }

      .nav-wrap nav > a {
        justify-content: center;
        width: 100%;
      }

      .nav-pill {
        width: 100%;
        justify-content: center;
        overflow-x: auto;
      }

      .nav-pill a {
        min-width: max-content;
      }

      .hero h1 {
        font-size: 3.35rem;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .hero-visual {
        min-height: 360px;
      }

      .rank-card {
        left: 7%;
        right: 7%;
      }

	      .ball {
	        width: 92px;
	        height: 92px;
	      }

	      div.center-small-devices {
	        text-align: center;
	        align-items: center;
	        justify-content: center;
	      }

	      div.center-small-devices > * {
	        margin-left: auto;
	        margin-right: auto;
	      }

	      h2,
	      .h2 {
	        text-align: center;
	      }

	      .eyebrow {
	        display: flex;
	        justify-content: center;
	        text-align: center;
	      }

	      .eyebrow::before {
	        display: none;
	      }

	      #reglas p {
	        text-align: center;
	      }

	      .aceptar {
	        justify-content: center;
	        text-align: center;
	      }

	      .aceptar .form-check {
	        display: inline-block;
	      }

	      .finish-area {
	        flex-direction: column;
	        justify-content: center !important;
	        text-align: center;
	      }
	    }
  #gradient {
    position: absolute;
    background: var(--reyset-bg);
    background: linear-gradient(180deg, rgba(2, 144, 85, 1) 0%, rgba(246, 250, 247, 1) 100%);
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 500px;
  }
  .banderas td div span {
    margin-bottom: 0.3rem;
  }
  .logo-dark {
    max-width: 100%;
  }
