.logoNav {
    width: 2rem;
}

.logoHero {
    width: 2.4rem
}
.google-icon {
  width: 32px;      /* scale */
  height: 32px;      /* color */
    flex-shrink: 0;  /* prevent stretching */
}
.hero-section {
  width: 100%;
  min-height: 100vh; /* ensures full viewport height at least */
  padding: 2rem 0; /* give top/bottom spacing */
  background: 
    linear-gradient(to bottom, 
      rgba(33,37,41,1) 0%,        
      rgba(0,0,0,0) 20%,          
      rgba(0,0,0,0) 80%,          
      rgba(33,37,41,1) 100%       
    ),
    url("images/heroImage.png") no-repeat center;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dash-section {
  /* Remove fixed height */
  min-height: 100vh; /* ensures at least full viewport height */
  width: 100%;
  background: 
    linear-gradient(to bottom, 
      rgba(33,37,41,1) 0%,
      rgba(0,0,0,0) 20%,
      rgba(0,0,0,0) 80%,
      rgba(33,37,41,1) 100%
    ),
    url("images/dash1.webp") no-repeat center;
  background-size: cover;
  position: relative;
  padding-bottom: 0; /* added to remove gap */
  margin-bottom: 0;  /* added to remove gap */
}

.login-section {
  height: 100vh; /* full screen height */
  width: 100%;
  background: 
    linear-gradient(to bottom, 
      rgba(33,37,41,1) 0%,        /* top fade color (#212529) */
      rgba(0,0,0,0) 20%,          /* fade to transparent */
      rgba(112, 28, 28, 0) 80%,          /* keep center transparent */
      rgba(33,37,41,1) 100%       /* bottom fade color */
    ),
    url("images/bgLogin.jpg") no-repeat center;
  background-size: cover;
  position: relative;
}

.signup-section {
  height: 100vh; /* full screen height */
  width: 100%;
  background: 
    linear-gradient(to bottom, 
      rgba(33,37,41,1) 0%,        /* top fade color (#212529) */
      rgba(0,0,0,0) 20%,          /* fade to transparent */
      rgba(0,0,0,0) 80%,          /* keep center transparent */
      rgba(33,37,41,1) 100%       /* bottom fade color */
    ),
    url("images/signup.jpg") no-repeat center;
  background-size: cover;
  position: relative;
}

    .login-card {
      max-width: 400px;
      margin: auto;
      margin-top: 10vh;
      padding: 2rem;
      background: rgba(0, 0, 0, 0.85);
      border-radius: 10px;
      color: #fff;
    }
    .form-control {
      background-color: #222;
      border: none;
      color: #fff;
    }
    .form-control:focus {
      background-color: #333;
      color: #fff;
      box-shadow: none;
    }
    .btn-primary {
      width: 100%;
    }

.button {
  background-color: #212529;   /* dark gray (Bootstrap’s dark) */
  color: #f8f9fa;              /* light text */
  border: 1px solid #343a40;   /* slightly lighter border */
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #343a40;   /* lighten on hover */
  border-color: #495057;
  color: #ffffff;
  transform: translateY(-2px); /* subtle lift */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.button:active {
  background-color: #1c1f23;   /* deeper dark */
  border-color: #212529;
  transform: translateY(0);    /* press down effect */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.buttonLogin {
  background-color: #212529;   /* dark gray (Bootstrap’s dark) */
  color: #f8f9fa;              /* light text */
  border: 1px solid #343a40;   /* slightly lighter border */
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.buttonLogin:hover {
  background-color: #343a40;   /* lighten on hover */
  border-color: #495057;
  color: #ffffff;
  transform: translateY(-2px); /* subtle lift */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.buttonLogin:active {
  background-color: #1c1f23;   /* deeper dark */
  border-color: #212529;
  transform: translateY(0);    /* press down effect */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.leaderList li {
  background-color: rgb(105, 105, 105);
  color: #ffffff;
}

/*div in dashboard*/
 .bet-card {
      background-color: #1e1e1e;
      color: #fff;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
    .team {
      cursor: pointer;
      transition: transform 0.15s ease, background-color 0.15s ease;
    }
    .team:hover {
      transform: scale(1.03);
      background-color: rgba(255,255,255,0.05);
    }
    .team img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 50%;
    }
    .vs {
      font-weight: bold;
      font-size: 1.2rem;
      color: #ffc107;
    }
    .odds {
      font-size: 1rem;
      color: #adb5bd;
    }
    .bet-btn {
      background-color: #28a745;
      border: none;
      color: white;
      border-radius: 0.5rem;
    }
    .bet-btn:hover {
      background-color: #218838;
    }

    /* ccs for home logon */
    /* Scrollable matches container with custom scrollbar like dashboard */
.matches-container {
  background-color: #1f1f23;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 700px;
  max-height: 400px; /* scrollable if more bets */
  overflow-y: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  margin: 1rem auto;
  scroll-behavior: smooth; /* optional smooth scroll */
}

/* Webkit browsers (Chrome, Edge, Safari) */
.matches-container::-webkit-scrollbar {
  width: 10px;
}

.matches-container::-webkit-scrollbar-track {
  background: #1e1e1e; 
  border-radius: 8px;
}

.matches-container::-webkit-scrollbar-thumb {
  background-color: #343a40; 
  border-radius: 8px;
  border: 2px solid #1e1e1e; 
  transition: background 0.3s ease;
}

.matches-container::-webkit-scrollbar-thumb:hover {
  background-color: #ffc107; 
}

/* Firefox */
.matches-container {
  scrollbar-width: thin;
  scrollbar-color: #343a40 #1e1e1e;
}

.matches-container:hover {
  scrollbar-color: #ffc107 #1e1e1e;
}


  .match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #2c2c2f;
  }

  .match:last-child {
    border-bottom: none;
  }

  .match-team {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .match-team img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
  }

  .vs {
    font-weight: bold;
    color: #aaa;
  }

  .tournament {
    font-size: 0.9rem;
    color: #888;
  }

  .team {
  display: flex;
  align-items: center;
  width: 160px;     /* Adjust width as needed */
  min-width: 160px;
}

.bets-container {
  max-height: 400px; /* or any height you want */
  overflow-y: auto;
}

/* Custom scrollbar for bets containers */
.bets-container {
  max-height: 400px; /* keeps content scrollable */
  overflow-y: auto;

  /* Optional: smooth scrolling */
  scroll-behavior: smooth;
}

/* Webkit-based browsers (Chrome, Edge, Safari) */
.bets-container::-webkit-scrollbar {
  width: 10px; /* width of the scrollbar */
}

.bets-container::-webkit-scrollbar-track {
  background: #1e1e1e; /* dark background for track */
  border-radius: 8px;
}

.bets-container::-webkit-scrollbar-thumb {
  background-color: #343a40; /* slightly lighter dark for thumb */
  border-radius: 8px;
  border: 2px solid #1e1e1e; /* gives padding effect */
  transition: background 0.3s ease;
}

.bets-container::-webkit-scrollbar-thumb:hover {
  background-color: #ffc107; /* gold accent on hover */
}

/* Firefox */
.bets-container {
  scrollbar-width: thin;
  scrollbar-color: #343a40 #1e1e1e;
}

.bets-container:hover {
  scrollbar-color: #ffc107 #1e1e1e;
}

.matches-container {
  background-color: #1f1f23;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 700px;
  max-height: 600px; /* increased from 400px to 600px */
  overflow-y: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  margin: 1rem auto;
  scroll-behavior: smooth;
}

/* Optionally, make it relative to viewport height for responsiveness */
@media (min-width: 768px) {
  .matches-container {
    max-height: 70vh; /* 70% of viewport height */
  }
}


.match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #2c2c2f;
  flex-wrap: wrap; 
}

.match:last-child {
  border-bottom: none;
}

.match-team {
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;
  width: 45%;
  min-width: 150px; 
  text-align: center;
  gap: 8px;
}

.match-team img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.vs {
  font-weight: bold;
  color: #ffc107;
  font-size: 1.2rem;
  text-align: center;
  width: 10%;
}

.bet-btn {
    background-color: #28a745;
    border: none;
    color: white;
    border-radius: 0.5rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.9rem;
}

.bet-btn:hover {
    background-color: #218838;
}

.tournament {
  width: 100%;
  font-size: 0.85rem;
  color: #888;
  text-align: center;
  margin-top: 5px;
}
.match-time {
  width: 100%;
  font-size: 0.95rem;
  color: #dd6363;
  text-align: center;
  margin-top: 5px;
}

.bet-banner {
  background-color: #212529; /* fully opaque dark background */
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* subtle shadow */
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 2rem auto;
  width: 90%;
  max-width: 700px;
  position: relative;
}

/* Logo styling */
.bet-banner-logo {
  width: 60px;      /* adjust size as needed */
  height: auto;
  margin-bottom: 1rem; /* spacing between logo and text */
}

/* Subtle text shadow */
.bet-banner .lead {
  text-shadow: 0 0 5px rgba(255,255,255,0.1);
  font-size: inherit;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bet-banner {
    font-size: 1.6rem;
    padding: 1.5rem 1rem;
  }

  .bet-banner-logo {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .bet-banner {
    font-size: 1.3rem;
    padding: 1.2rem 0.8rem;
  }

  .bet-banner-logo {
    width: 40px;
  }
}

html, body {
  margin: 0;
  padding: 0;
    background-color: #212529;
  min-height: 100vh;
}

footer {
  margin-top: 0;
  background-color: #212529;
}

#signup-section {
  height: 100vh;
  width: 100%;
  background: 
    linear-gradient(to bottom, rgba(33,37,41,1) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 90%, rgba(33,37,41,1) 100%),
    url("images/signup.jpg") no-repeat center;
  background-size: cover;
  position: relative;
}


