:root {
  --bg-dark: #07111d;
  --bg-mid: #12344d;
  --accent: #d8a93e;
  --accent-2: #f1dca1;
  --panel: #fff9e8;
  --text: #14212b;
  --green: #2e5b4d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(46, 91, 77, 0.7), transparent 28%),
    linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-mid) 45%, var(--green) 100%);
  padding: 1.5rem;
}

li {
  list-style: none;
}

.site-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.match-container{
    background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 24px;
  margin:15px;
 
}



.site-header {
  border: 4px solid var(--accent-2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
  background: linear-gradient(120deg, #0f2338 0%, #21506b 100%);
}

.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  flex-wrap: wrap;
}

.banner-copy {
  flex: 1 1 320px;
  color: #fef7dc;
}

.eyebrow {
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--accent-2);
}

.banner-copy h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
}

.banner-copy p {
  margin: 0;
  max-width: 560px;
  font-size: 1rem;
}

.banner-visual {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.banner-visual img {
  width: min(220px, 100%);
  height: 140px;
  object-fit: cover;
  border: 3px solid var(--accent-2);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  background: rgba(7, 17, 29, 0.94);
  border-top: 3px solid var(--accent);
  width: 100%;
  margin-top: -23px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0.75rem 1.25rem 0;
  border: 2px solid var(--accent-2);
  border-radius: 10px;
  background: rgba(7, 17, 29, 0.94);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fffdf6;
  border-radius: 999px;
}

.nav-link,
.nav-button {
  text-decoration: none;
  color: #fffdf6;
  background: linear-gradient(135deg, var(--green), #1c3f34);
  border: 2px solid var(--accent-2);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover,
.nav-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
}

.nav-button {
  cursor: pointer;
  font-family: inherit;
}

.flash {
  margin: 1rem 0 0;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  background: rgba(255, 249, 232, 0.95);
  border: 2px solid var(--accent);
  font-weight: 600;
}

.content-card {
  margin-top: 1rem;
  padding: 1.4rem;
  border: 3px solid #1c2d2b;
  border-radius: 18px;
  background: rgba(255, 249, 232, 0.95);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.site-footer {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  text-align: center;
  color: #fef7dc;
  background: rgba(7, 17, 29, 0.9);
  border: 2px solid var(--accent-2);
  border-radius: 14px;
}

.site-footer p {
  margin: 0.2rem 0;
}

form {
      display: flex;
    /* flex-direction: column; */
    gap: 0.7rem;
    /* max-width: 360px; */
    align-items: center;
    justify-content: center;
}

input,
button,
select,
textarea {
  padding: 0.7rem 0.8rem;
  border: 2px solid #2d4f45;
  border-radius: 8px;
  font: inherit;
  background: #fffdf6;
}

button,
input[type="submit"] {
  background: linear-gradient(135deg, var(--accent), #9a6422);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

p {
  margin: 0.25rem 0;
}

.table,
table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 0.65rem;
  border-bottom: 1px solid #d4c58f;
}

.standings-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 2px solid rgba(17, 35, 45, 0.2);
  background: rgba(255, 255, 255, 0.5);
}

.standings-table {
  min-width: 700px;
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.9);
}

.standings-table th {
  background: rgba(7, 17, 29, 0.92);
  color: #fffdf6;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.standings-table td {
  font-size: 0.95rem;
  white-space: nowrap;
}

.standings-table tbody tr:nth-child(even) {
  background: rgba(241, 220, 161, 0.15);
}

.standings-table tbody tr:hover {
  background: rgba(216, 169, 62, 0.12);
}

@media (max-width: 780px) {
  body {
    padding: 0.8rem;
  }

  .banner {
    padding: 1rem;
  }

  .content-card {
    padding: 1rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0.75rem;
    border-radius: 0 0 14px 14px;
  }

  .main-nav.is-open {
    display: flex;
  }
}

@media (max-width: 480px) {
  .banner-visual img {
    width: 100%;
    height: 120px;
  }

  .banner-copy h1 {
    font-size: 1.6rem;
  }
}
h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 24px;
  font-weight: bold;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.shield {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.team-name {
  font-size: 16px;
  margin: 0;
  text-align: center;
  font-weight: 600;
}

.vs {
  font-size: 18px;
  color: #666;
  font-weight: bold;
}

.banner-content{
  position: absolute;
  z-index: 10;
  padding: 5%;
}

/* Utilidades responsive de visibilidad similares a Bootstrap */
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }

  .visible-xs {
    display: block !important;
  }

  .visible-xs-inline {
    display: inline !important;
  }

  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }

  .visible-sm {
    display: block !important;
  }

  .visible-sm-inline {
    display: inline !important;
  }

  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }

  .visible-md {
    display: block !important;
  }

  .visible-md-inline {
    display: inline !important;
  }

  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }

  .visible-lg {
    display: block !important;
  }

  .visible-lg-inline {
    display: inline !important;
  }

  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

/*# sourceMappingURL=application.css-ba99e5e6fc243d7e828a96853b5609f8e01b224a546a86f16e868d4a2ceebe6c.map */
