* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: Arial, sans-serif;
      background-color: #000000;
      background-image: url("./img/checkered-light-emboss.png");
      color: #fff !important;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 100vh;
      margin: 0;
    }
#header-right {
  display: flex;
  align-items: center;
  gap: 15px; 
}

#liga2-text {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #00d4d7;
  user-select: none;
}

    .flag-icon {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      margin-right: 10px; 
      vertical-align: middle;
    }

    
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: transparent;
      padding: 20px 40px;
    }

    #logo-link {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: white;
    }

    #logo-img {
      width: 120px;
      height: auto;
      filter: invert(1);
    }
    .readme-box {
      max-width: 900px;
      margin: 40px auto;
      padding: 20px 30px;
      background-color: transparent;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      font-family: 'Roboto Slab', serif;
      font-size: 1.2rem;
      line-height: 1.6;
      color: #b38512;
    }
    .readme-intro {
      font-size: 1rem;
      margin-bottom: 2rem;
      color: #fff;
    }

    .readme-footer {
      font-size: 0.9rem;
      color: #fff;
    }

    #remember-text {
      font-size: 2.5rem;
      text-transform: uppercase;
      font-weight: bold;
      font-family: 'Roboto Slab', serif;
      margin-left: 10px;
      line-height: 1.1;
      color: #f5f5f5;
    }

    #main-title {
      font-size: 2.5rem;
      font-weight: bold;
      text-align: center;
      flex-grow: 1;
    }

    main {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 40px 20px;
    }

    .grid-container {
      display: grid;
      grid-template-columns: repeat(1, 1fr)!important;
      gap: 20px;
      width: 100%;
      max-width: 1000px;
      margin-top: 40px;
    }

    .grid-item {
      background-color: #9602d1;
      border-radius: 12px;
      padding: 30px 20px;
      color: white;
      text-align: center;
      font-size: 1.2rem;
      font-weight: bold;
      transition: transform 0.2s, background-color 0.3s;
      cursor: pointer;
      text-decoration: none;
    }

    
.email-link {
  color: #ff6600 !important;     
  text-decoration: none !important;
}
.email-link:hover {
  color: #ff3300 !important;
  text-decoration: underline !important;
}

    .grid-item:hover {
      transform: translateY(-5px);
      background-color: #4b1a9c;
    }

    .grid-item.disabled {
      background-color: #555;
      cursor: not-allowed;
    }

    .grid-item.disabled:hover {
      transform: none;
      background-color: #555;
    }
#main-title-container {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  box-sizing: border-box;
  justify-content: flex-start; 
  gap: 30px;
}



.header-section {
  display: flex;
  align-items: center;
}

#left-section {
  display: flex;
  align-items: center;
  gap: 10px;
}
#center-right-section {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
}

#main-title-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#main-title {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 2rem;
  color: #f5f5f5;
  margin: 0;
  letter-spacing: 2px;
  user-select: none;
  flex-grow: 1;
  text-align: center;
}

#info-button {
  background-color: transparent;
  border: 2px solid #f5f5f5;
  color: #f5f5f5;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;
  margin-left: 20px;
  flex-shrink: 0;
}

#info-button:hover {
  background-color: #f5f5f5;
  color: #9602d1;
}

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}
.modal-content {
  background:linear-gradient(325deg, black, #2a2a2a);
  background-color: linear-gradient(135deg, black, #2a2a2a);
  margin: 3% auto;
  padding: 40px 35px;
  border-radius: 12px;
  width: 95%;
  max-width: 600px;   
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  max-height: 80vh;   
  overflow-y: auto;
  color: #b38512;
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.8;
}


.modal-content h2, 
.modal-content h3 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #b38512;
  text-align: left;
}

.modal-content p,
.modal-content ul {
  margin-bottom: 1em;
  color: #b38512;
  line-height: 1.6;
  font-size: 1.05rem;
  text-align: left;
}

.modal-content ul {
  padding-left: 20px;
}

.modal-content ul li {
  margin-bottom: 0.8em;
  font-weight: 400;
}

.modal-content ul li strong {
  font-weight: 700;
  color: #b38512;
}

.close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  color: #bbb;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #eee;
}



.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
}
.close:hover {
  color: #000;
}





















@media (max-width: 1070px) {
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  html {
    font-size: 125%;

  body {
    padding: 25px;
  }

  #main-title {
    font-size: 2.3rem;
  }

  .grid-item {
    font-size: 2rem;
    padding: 35px 25px;
  }

  header {
    padding: 25px 20px;
  }

  #remember-text {
    font-size: 2.8rem;
  }

  #info-button {
    font-size: 1.8rem;
    width: 36px;
    height: 36px;
  }

  .readme-intro {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .readme-footer {
  font-size: 0.75rem;
  color: #fff;
  }
}
}










.grid-item[href="laliga2/"] {
        background-color: #00d4d7;
        background-image: url("./img/gplay.png");
        color: white;
        font-weight: bold;
        font-size: 1.75rem;
        transition: background-position 0.5s ease;
        background-size: 40px 40px;
        background-position: 0 0;
            font-family: 'Roboto Slab', serif;

        }

        .grid-item[href="laliga2/"]:hover {
        background-position: 40px 40px;
        background-color: #03f5f9;
          text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.6);
        }
.grid-item[href="laliga/"] {
        background-color: #ec5a4d;
        background-image: url("./img/gplay.png");
        color: white;
        font-weight: bold;
        font-size: 1.75rem;
        transition: background-position 0.5s ease;
        background-size: 40px 40px;
        background-position: 0 0;
            font-family: 'Roboto Slab', serif;

        }

        .grid-item[href="laliga/"]:hover {
        background-position: 40px 40px;
                background-color: #d14f44;

          text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.6);
        }

.grid-item[href="premier/"] {
        background-color: #3d195b;
        background-image: url("./img/gplay.png");
        color: white;
        font-weight: bold;
        font-size: 1.75rem;
        transition: background-position 0.5s ease;
        background-size: 40px 40px;
        background-position: 0 0;
            font-family: 'Roboto Slab', serif;

        }

        .grid-item[href="premier/"]:hover {
        background-position: 40px 40px;
        background-color: #2b0947;
          text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.6);
        }
      