
.pwa-install-prompt[data-v-14fc87d0] {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, #161b22, #0d1117);
  border: 1px solid #30363d;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}
.prompt-content[data-v-14fc87d0] {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 12px;
  position: relative;
}
.prompt-icon img[data-v-14fc87d0] {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #21262d;
  padding: 8px;
}
.prompt-text[data-v-14fc87d0] {
  flex: 1;
  min-width: 0;
}
.prompt-text h3[data-v-14fc87d0] {
  margin: 0 0 4px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #e0e0e0;
}
.prompt-text p[data-v-14fc87d0] {
  margin: 0;
  font-size: 0.875rem;
  color: #8b949e;
  line-height: 1.4;
}
.prompt-actions[data-v-14fc87d0] {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.install-btn[data-v-14fc87d0] {
  background-color: #238636;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}
.install-btn[data-v-14fc87d0]:hover {
  background-color: #2ea043;
}
.dismiss-btn[data-v-14fc87d0] {
  background-color: transparent;
  color: #8b949e;
  border: 1px solid #30363d;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.dismiss-btn[data-v-14fc87d0]:hover {
  background-color: #21262d;
  color: #e0e0e0;
}
.close-btn[data-v-14fc87d0] {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  color: #8b949e;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s;
}
.close-btn[data-v-14fc87d0]:hover {
  background-color: #21262d;
  color: #e0e0e0;
}
@media (max-width: 768px) {
.pwa-install-prompt[data-v-14fc87d0] {
    bottom: 16px;
    left: 16px;
    right: 16px;
}
.prompt-content[data-v-14fc87d0] {
    padding: 12px;
    gap: 10px;
}
.prompt-icon img[data-v-14fc87d0] {
    width: 40px;
    height: 40px;
}
.prompt-text h3[data-v-14fc87d0] {
    font-size: 0.9rem;
}
.prompt-text p[data-v-14fc87d0] {
    font-size: 0.8rem;
}
.prompt-actions[data-v-14fc87d0] {
    flex-direction: column;
    gap: 6px;
}
.install-btn[data-v-14fc87d0],
  .dismiss-btn[data-v-14fc87d0] {
    padding: 6px 12px;
    font-size: 0.8rem;
}
}

/* Dark theme support */
@media (prefers-color-scheme: light) {
.pwa-install-prompt[data-v-14fc87d0] {
    background: linear-gradient(135deg, #ffffff, #f6f8fa);
    border-color: #d1d9e0;
}
.prompt-text h3[data-v-14fc87d0] {
    color: #24292f;
}
.prompt-text p[data-v-14fc87d0] {
    color: #656d76;
}
.dismiss-btn[data-v-14fc87d0] {
    border-color: #d1d9e0;
    color: #656d76;
}
.dismiss-btn[data-v-14fc87d0]:hover,
  .close-btn[data-v-14fc87d0]:hover {
    background-color: #f3f4f6;
    color: #24292f;
}
.close-btn[data-v-14fc87d0] {
    color: #656d76;
}
}


#app {
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #e0e0e0;
  background-color: #0d1117;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  background-color: #161b22;
  color: #c9d1d9;
  padding: 2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid #30363d;
  height: 60px;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
}
.nav-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-router {
  color: white;
  text-decoration: none;
  margin-left: 12px;
  font-weight: 500;
  transition: color 0.3s;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
.header-text {
    margin-inline-start: 8px;
}
}
.logo i {
  margin-right: 0.5rem;
  color: #ff5722;
}
.nav-links {
  display: flex;
  align-items: center;
}
.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 12px;
  font-weight: 500;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links a:hover,
.nav-links a.router-link-active {
  color: #ff7b45;
}
.nav-links a.settings-icon {
  margin-left: 12px;
  padding: 0.375rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.nav-links a.settings-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.last-updated-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.last-updated {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: #8b949e;
}
.last-updated .clock {
  color: #8b949e;
  margin: 0 6px 0 0;
  flex-shrink: 0;
}
.refresh-btn {
  background: none;
  border: none;
  color: #8b949e;
  cursor: pointer;
  padding: 0.375rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.refresh-btn:hover {
  color: #c9d1d9;
  background-color: rgba(255, 255, 255, 0.1);
}
.refresh-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.refresh-icon {
  transition: transform 0.3s ease;
}
.refresh-icon.spinning {
  animation: spin 1s linear infinite;
}
@keyframes spin {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}
main {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
}
footer {
  background-color: #161b22;
  color: #8b949e;
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid #30363d;
}
@media (max-width: 768px) {
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
}
nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    gap: 1rem;
    height: 100%;
}
.nav-section {
    display: none;
}
.logo {
    font-size: 1.2rem;
    flex: 1;
}
.mobile-last-updated {
    display: flex !important;
    align-items: center;
    font-size: 0.65rem;
    color: #8b949e;
    white-space: nowrap;
    gap: 0.25rem;
.clock {
      color: #8b949e;
}
}

  /* Mobile bottom navigation */
.mobile-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #161b22;
    border-top: 1px solid #30363d;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    flex-direction: row !important;
    justify-content: space-around;
    align-items: stretch;
    height: 60px;
}
.mobile-bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.2rem;
    color: #c9d1d9;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 500;
    transition: color 0.3s;
    gap: 0.25rem;
    text-align: center;
    white-space: nowrap;
    min-height: 100%;
}
.mobile-bottom-nav a:hover,
  .mobile-bottom-nav a.router-link-active {
    color: #ff7b45;
}
.mobile-bottom-nav svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    display: block;
    margin: 0 auto;
}
.mobile-bottom-nav .icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin: 0 auto 4px auto;
}
main {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 1rem 0.5rem;
    min-height: calc(100vh - 120px);
}
}
@media (min-width: 769px) {
.mobile-bottom-nav {
    display: none;
}
.mobile-last-updated {
    display: none !important;
}
}


.home[data-v-f1e48dce] {
  width: 100%;
}
.date-section[data-v-f1e48dce] {
  margin-bottom: 3rem;
}
.date-header[data-v-f1e48dce] {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #30363d;
}
.date-header h2[data-v-f1e48dce] {
  color: #c9d1d9;
  font-size: 1.5rem;
  margin: 0;
}
.page-header[data-v-f1e48dce] {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #30363d;
}
.page-header h1[data-v-f1e48dce] {
  color: #c9d1d9;
  font-size: 2rem;
  margin: 0;
}
.loading[data-v-f1e48dce],
.no-games[data-v-f1e48dce] {
  text-align: center;
  padding: 3rem;
  background-color: #161b22;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #30363d;
}
.loading[data-v-f1e48dce] > *,
.no-games[data-v-f1e48dce] > * {
  color: #ff7b45;
  margin-bottom: 1rem;
}
.games-container[data-v-f1e48dce] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}
.game-card[data-v-f1e48dce] {
  background-color: #161b22;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #30363d;
}
.game-card[data-v-f1e48dce]:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.game-header[data-v-f1e48dce] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: #0d1117;
  border-bottom: 1px solid #30363d;
}
.game-time[data-v-f1e48dce] {
  font-weight: 500;
  color: #8b949e;
}
.game-status[data-v-f1e48dce] {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
}
.status-pre[data-v-f1e48dce] {
  background-color: #1e3a5f;
  color: #58a6ff;
}
.status-in[data-v-f1e48dce] {
  background-color: #4a3806;
  color: #ffd43b;
}
.status-post[data-v-f1e48dce] {
  background-color: #1e4620;
  color: #56d364;
}
.live-indicator[data-v-f1e48dce] {
  color: #ff6b6b;
  margin-right: 0.25rem;
  animation: pulse-f1e48dce 2s infinite;
}
@keyframes pulse-f1e48dce {
0%,
  100% {
    opacity: 1;
}
50% {
    opacity: 0.3;
}
}
.teams[data-v-f1e48dce] {
  padding: 1rem;
}
.team[data-v-f1e48dce] {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.team[data-v-f1e48dce]:last-child {
  margin-bottom: 0;
  padding-top: 0.75rem;
  border-top: 1px solid #30363d;
}
.team-info[data-v-f1e48dce] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.team-logo[data-v-f1e48dce] {
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-logo img[data-v-f1e48dce] {
  max-width: 100%;
  max-height: 100%;
}
.logo-placeholder[data-v-f1e48dce] {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4a5568, #2d3748);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  color: #e2e8f0;
  text-transform: uppercase;
}
.team-details[data-v-f1e48dce] {
  flex: 1;
}
.team-name[data-v-f1e48dce] {
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #e0e0e0;
}
.game-card.favorite-game[data-v-f1e48dce] {
  position: relative;
  border: 2px solid #ffea00;
  overflow: visible;
}
.game-card.favorite-game[data-v-f1e48dce]::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(
    45deg,
    #ff7b00,
    #ff9500,
    #ffb700,
    #ffea00,
    #ff7b00,
    #ff9500,
    #ffea00
  );
  background-size: 400% 400%;
  animation: borderSweep-f1e48dce 4s linear infinite;
  border-radius: 8px;
  z-index: -1;
}
.game-card.favorite-game[data-v-f1e48dce]::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0px;
  right: 0px;
  bottom: 2px;
  background: #161b22;
  border-radius: 16px;
  z-index: 0;
}
.game-card.favorite-game[data-v-f1e48dce] > * {
  position: relative;
  z-index: 1;
}
.game-card.favorite-game[data-v-f1e48dce]:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 212, 59, 0.4);
}
@keyframes borderSweep-f1e48dce {
0% {
    background-position: 0% 50%;
}
100% {
    background-position: 400% 50%;
}
}
.team-record[data-v-f1e48dce] {
  font-size: 0.875rem;
  color: #8b949e;
}
.team-rank[data-v-f1e48dce] {
  display: inline-block;
  background-color: transparent;
  color: #8b949e;
  font-size: 0.7rem;
  font-weight: 400;
  padding: 0;
  border-radius: 0;
  margin-left: 0.5rem;
  opacity: 0.8;
}
.team-score[data-v-f1e48dce] {
  font-size: 1.75rem;
  font-weight: 700;
  color: #e0e0e0;
  margin-left: 1rem;
  min-width: 3rem;
  text-align: center;
}
.game-card[data-game-state="in"] .team-score[data-v-f1e48dce] {
  color: #ffd43b;
  text-shadow: 0 0 8px rgba(255, 212, 59, 0.3);
}
.game-card[data-game-state="post"] .team-score[data-v-f1e48dce] {
  color: #56d364;
}
.game-footer[data-v-f1e48dce] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: #0d1117;
  border-top: 1px solid #30363d;
  font-size: 0.75rem;
  color: #8b949e;
  gap: 0.75rem;
}
.conference[data-v-f1e48dce] {
  font-weight: 500;
  color: #e0e0e0;
}
.weather[data-v-f1e48dce],
.venue[data-v-f1e48dce],
.tv-network[data-v-f1e48dce] {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #8b949e;
}
.venue[data-v-f1e48dce] {
  font-weight: 500;
  color: #e0e0e0;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}
.weather i[data-v-f1e48dce],
.tv-network i[data-v-f1e48dce] {
  margin-right: 0.25rem;
}
@media (max-width: 768px) {
.page-header[data-v-f1e48dce] {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}
.page-header h1[data-v-f1e48dce] {
    font-size: 1.5rem;
}
.date-header[data-v-f1e48dce] {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}
.date-header h2[data-v-f1e48dce] {
    font-size: 1.25rem;
}
.games-container[data-v-f1e48dce] {
    grid-template-columns: 1fr;
}
}


.teams[data-v-0ad9a318] {
  width: 100%;
}
.page-header[data-v-0ad9a318] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #30363d;
}
.page-header h1[data-v-0ad9a318] {
  color: #c9d1d9;
  font-size: 2rem;
}
.search-container[data-v-0ad9a318] {
  width: 300px;
}
.search-input[data-v-0ad9a318] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #30363d;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #0d1117;
  color: #e0e0e0;
  transition: border-color 0.3s;
}
.search-input[data-v-0ad9a318]:focus {
  outline: none;
  border-color: #58a6ff;
}
.loading[data-v-0ad9a318],
.no-teams[data-v-0ad9a318] {
  text-align: center;
  padding: 3rem;
  background-color: #161b22;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #30363d;
}
.loading i[data-v-0ad9a318],
.no-teams i[data-v-0ad9a318] {
  font-size: 3rem;
  color: #ff7b45;
  margin-bottom: 1rem;
}
.teams-container[data-v-0ad9a318] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
}
.team-card[data-v-0ad9a318] {
  background-color: #161b22;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid #30363d;
  min-height: 80px;
}
.team-card[data-v-0ad9a318]:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.team-logo[data-v-0ad9a318] {
  width: 50px;
  height: 50px;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.team-logo img[data-v-0ad9a318] {
  max-width: 100%;
  max-height: 100%;
}
.logo-placeholder[data-v-0ad9a318] {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4a5568, #2d3748);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  color: #e2e8f0;
  text-transform: uppercase;
}
.team-info[data-v-0ad9a318] {
  flex: 1;
}
.team-name[data-v-0ad9a318] {
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.favorite-btn[data-v-0ad9a318] {
  background: none;
  border: none;
  color: #8b949e;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.2s;
  margin-left: 0.75rem;
  flex-shrink: 0;
}
.favorite-btn[data-v-0ad9a318]:hover {
  color: #ffd43b;
  background-color: rgba(255, 212, 59, 0.1);
}
.favorite-btn.is-favorite[data-v-0ad9a318] {
  color: #ffd43b;
}
.team-abbr[data-v-0ad9a318] {
  font-size: 0.875rem;
  color: #8b949e;
  text-transform: uppercase;
}
.team-rank[data-v-0ad9a318] {
  display: inline-block;
  background-color: transparent;
  color: #8b949e;
  font-size: 0.7rem;
  font-weight: 400;
  padding: 0;
  border-radius: 0;
  margin-top: 0.25rem;
  opacity: 0.8;
}
@media (max-width: 768px) {
.page-header[data-v-0ad9a318] {
    flex-direction: column;
    align-items: flex-start;
}
.search-container[data-v-0ad9a318] {
    margin-top: 1rem;
    width: 100%;
}
.teams-container[data-v-0ad9a318] {
    grid-template-columns: 1fr;
}
}


.conferences[data-v-6f4927e8] {
  width: 100%;
}
.page-header[data-v-6f4927e8] {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #30363d;
}
.page-header h1[data-v-6f4927e8] {
  color: #c9d1d9;
  font-size: 2rem;
}
.loading[data-v-6f4927e8],
.no-conferences[data-v-6f4927e8] {
  text-align: center;
  padding: 3rem;
  background-color: #161b22;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #30363d;
}
.loading i[data-v-6f4927e8],
.no-conferences i[data-v-6f4927e8] {
  font-size: 3rem;
  color: #ff7b45;
  margin-bottom: 1rem;
}
.conferences-container[data-v-6f4927e8] {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.conference-card[data-v-6f4927e8] {
  background-color: #161b22;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: 1px solid #30363d;
}
.conference-header[data-v-6f4927e8] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #0d1117;
  color: #c9d1d9;
  border-bottom: 1px solid #30363d;
}
.conference-header h2[data-v-6f4927e8] {
  font-size: 1.5rem;
  margin: 0;
}
.team-count[data-v-6f4927e8] {
  background-color: #238636;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  color: white;
}
.teams-grid[data-v-6f4927e8] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1.5rem;
}
.team-item[data-v-6f4927e8] {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.team-item[data-v-6f4927e8]:hover {
  background-color: #21262d;
}
.team-logo[data-v-6f4927e8] {
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-logo img[data-v-6f4927e8] {
  max-width: 100%;
  max-height: 100%;
}
.logo-placeholder[data-v-6f4927e8] {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4a5568, #2d3748);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  color: #e2e8f0;
  text-transform: uppercase;
}
.team-info[data-v-6f4927e8] {
  flex: 1;
}
.team-name[data-v-6f4927e8] {
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #e0e0e0;
}
.team-rank[data-v-6f4927e8] {
  display: inline-block;
  background-color: #ff7b45;
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
}
@media (max-width: 768px) {
.teams-grid[data-v-6f4927e8] {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
}


.game-detail[data-v-4b5aff60] {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.loading[data-v-4b5aff60],
.no-game[data-v-4b5aff60] {
  text-align: center;
  padding: 3rem;
  background-color: #161b22;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #30363d;
}
.loading i[data-v-4b5aff60],
.no-game i[data-v-4b5aff60] {
  font-size: 3rem;
  color: #ff7b45;
  margin-bottom: 1rem;
}
.no-game .back-button[data-v-4b5aff60] {
  margin-top: 1rem;
}
.game-header[data-v-4b5aff60] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.back-button[data-v-4b5aff60] {
  background-color: #238636;
  color: white;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: 1px solid #2ea043;
}
.back-button i[data-v-4b5aff60] {
  margin-right: 0.5rem;
}
.game-status[data-v-4b5aff60] {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
}
.status-pre[data-v-4b5aff60] {
  background-color: #1e3a5f;
  color: #58a6ff;
}
.status-in[data-v-4b5aff60] {
  background-color: #4a3806;
  color: #ffd43b;
}
.status-post[data-v-4b5aff60] {
  background-color: #1e4620;
  color: #56d364;
}
.game-card[data-v-4b5aff60] {
  background-color: #161b22;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: 1px solid #30363d;
}

/* Game Info Header */
.game-info-header[data-v-4b5aff60] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 1.5rem;
  background-color: #0d1117;
  border-bottom: 1px solid #30363d;
}
.game-meta[data-v-4b5aff60] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.game-meta > div[data-v-4b5aff60] {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #8b949e;
}
.game-venue[data-v-4b5aff60],
.game-broadcast[data-v-4b5aff60] {
  color: #e0e0e0;
  font-weight: 500;
}
.game-meta i[data-v-4b5aff60] {
  margin-right: 0.5rem;
  width: 14px;
}
.game-status-large[data-v-4b5aff60] {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}

/* Teams Section */
.teams-section[data-v-4b5aff60] {
  padding: 1rem;
}
.team-row[data-v-4b5aff60] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border-radius: 6px;
  background-color: #0d1117;
  border: 1px solid #30363d;
}
.team-row[data-v-4b5aff60]:last-child {
  margin-bottom: 0;
}
.team-main[data-v-4b5aff60] {
  display: flex;
  align-items: center;
  flex: 1;
}
.team-logo[data-v-4b5aff60] {
  width: 48px;
  height: 48px;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.team-logo img[data-v-4b5aff60] {
  max-width: 100%;
  max-height: 100%;
}
.logo-placeholder[data-v-4b5aff60] {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4a5568, #2d3748);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  color: #e2e8f0;
  text-transform: uppercase;
}
.team-info[data-v-4b5aff60] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.team-name[data-v-4b5aff60] {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e0e0e0;
}
.team-details[data-v-4b5aff60] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.team-record[data-v-4b5aff60] {
  color: #8b949e;
}
.team-rank[data-v-4b5aff60] {
  background-color: transparent;
  color: #8b949e;
  font-size: 0.7rem;
  font-weight: 400;
  padding: 0;
  border-radius: 0;
  margin-left: 0.5rem;
  opacity: 0.8;
}
.team-score-section[data-v-4b5aff60] {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  margin-left: 1rem;
}
.team-score[data-v-4b5aff60] {
  font-size: 2rem;
  font-weight: 700;
  color: #e0e0e0;
  min-width: 60px;
  text-align: center;
}
.team-location-badge[data-v-4b5aff60] {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}
.home-team .team-location-badge[data-v-4b5aff60] {
  background-color: #1e4620;
  color: #56d364;
}
.away-team .team-location-badge[data-v-4b5aff60] {
  background-color: #1e3a5f;
  color: #58a6ff;
}

/* Line Scores Section */
.line-scores-section[data-v-4b5aff60] {
  padding: 1.5rem;
  border-top: 1px solid #30363d;
  background-color: #0d1117;
}
.line-scores-section h3[data-v-4b5aff60] {
  margin: 0 0 1rem 0;
  color: #c9d1d9;
  font-size: 1.125rem;
  font-weight: 600;
}
.line-scores-grid[data-v-4b5aff60] {
  display: grid;
  gap: 0.5rem;
  align-items: center;
}
.line-scores-header[data-v-4b5aff60] {
  display: contents;
}
.team-header[data-v-4b5aff60] {
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  color: #8b949e;
  text-align: left;
}
.period-header[data-v-4b5aff60],
.total-header[data-v-4b5aff60] {
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  color: #8b949e;
  text-align: center;
  background-color: #161b22;
  border-radius: 4px;
  border: 1px solid #30363d;
}
.total-header[data-v-4b5aff60] {
  background-color: #238636;
  color: white;
  font-weight: 700;
}
.line-scores-row[data-v-4b5aff60] {
  display: contents;
}
.team-name-cell[data-v-4b5aff60] {
  padding: 0.75rem 0.5rem;
  font-weight: 500;
  color: #e0e0e0;
  background-color: #161b22;
  border-radius: 4px;
  border: 1px solid #30363d;
}
.score-cell[data-v-4b5aff60] {
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-weight: 600;
  color: #e0e0e0;
  background-color: #161b22;
  border-radius: 4px;
  border: 1px solid #30363d;
  min-width: 50px;
}
.score-cell.total[data-v-4b5aff60] {
  background-color: #21262d;
  color: #ffd43b;
  font-size: 1.125rem;
  font-weight: 700;
}
@media (max-width: 768px) {
.game-header[data-v-4b5aff60] {
    flex-direction: column;
    align-items: flex-start;
}
.game-status[data-v-4b5aff60] {
    margin-top: 1rem;
}
.game-info[data-v-4b5aff60] {
    flex-direction: column;
}
.game-info > div[data-v-4b5aff60] {
    margin-right: 0;
    margin-bottom: 0.75rem;
}
.team-header[data-v-4b5aff60] {
    flex-direction: column;
    align-items: flex-start;
}
.team-logo[data-v-4b5aff60] {
    margin-bottom: 1rem;
}
.line-scores-grid[data-v-4b5aff60] {
    gap: 0.25rem;
}
.line-scores-section h3[data-v-4b5aff60] {
    font-size: 1rem;
}
.team-name-cell[data-v-4b5aff60],
  .score-cell[data-v-4b5aff60],
  .period-header[data-v-4b5aff60],
  .total-header[data-v-4b5aff60] {
    padding: 0.5rem 0.25rem;
    font-size: 0.875rem;
}
.score-cell[data-v-4b5aff60] {
    min-width: 40px;
}
.score-cell.total[data-v-4b5aff60] {
    font-size: 1rem;
}
}


.scoreboard-view[data-v-4fdf4db9] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
h1[data-v-4fdf4db9] {
  text-align: center;
  margin-bottom: 30px;
  color: #c9d1d9;
}
.filters[data-v-4fdf4db9] {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}
.date-filter[data-v-4fdf4db9],
.conference-filter[data-v-4fdf4db9],
.search-filter[data-v-4fdf4db9] {
  display: flex;
  align-items: center;
  gap: 10px;
}
select[data-v-4fdf4db9],
input[type="date"][data-v-4fdf4db9],
input[type="text"][data-v-4fdf4db9] {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #30363d;
  background-color: #0d1117;
  color: #e0e0e0;
}
.no-games[data-v-4fdf4db9] {
  text-align: center;
  padding: 40px;
  background-color: #161b22;
  border-radius: 8px;
  border: 1px solid #30363d;
  color: #8b949e;
}
.games-container[data-v-4fdf4db9] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}
.game-card[data-v-4fdf4db9] {
  background-color: #161b22;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  padding: 15px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #30363d;
}
.game-card[data-v-4fdf4db9]:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.game-header[data-v-4fdf4db9] {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #30363d;
}
.game-date[data-v-4fdf4db9] {
  font-weight: 500;
  color: #8b949e;
}
.game-status[data-v-4fdf4db9] {
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
}
.status-pre[data-v-4fdf4db9] {
  background-color: #1e3a5f;
  color: #58a6ff;
}
.status-in[data-v-4fdf4db9] {
  background-color: #4a3806;
  color: #ffd43b;
}
.status-post[data-v-4fdf4db9] {
  background-color: #1e4620;
  color: #56d364;
}
.game-teams[data-v-4fdf4db9] {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.team[data-v-4fdf4db9] {
  display: flex;
  align-items: center;
  gap: 15px;
}
.team-logo[data-v-4fdf4db9] {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-logo img[data-v-4fdf4db9] {
  max-width: 100%;
  max-height: 100%;
}
.team-info[data-v-4fdf4db9] {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.team-name[data-v-4fdf4db9] {
  font-weight: 600;
  color: #e0e0e0;
}
.team-record[data-v-4fdf4db9] {
  font-size: 0.85rem;
  color: #8b949e;
}
.team-score[data-v-4fdf4db9] {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e0e0e0;
}
.home-team[data-v-4fdf4db9] {
  background-color: #21262d;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #30363d;
}
.game-footer[data-v-4fdf4db9] {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #30363d;
  font-size: 0.85rem;
  color: #8b949e;
}
@media (max-width: 768px) {
.filters[data-v-4fdf4db9] {
    flex-direction: column;
}
.games-container[data-v-4fdf4db9] {
    grid-template-columns: 1fr;
}
}


.settings[data-v-f72ae824] {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.page-header[data-v-f72ae824] {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #30363d;
}
.page-header h1[data-v-f72ae824] {
  color: #c9d1d9;
  font-size: 2rem;
  margin: 0;
}
.settings-container[data-v-f72ae824] {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.settings-section[data-v-f72ae824] {
  background-color: #161b22;
  border-radius: 8px;
  border: 1px solid #30363d;
  overflow: hidden;
}
.settings-section h2[data-v-f72ae824] {
  color: #c9d1d9;
  font-size: 1.25rem;
  margin: 0;
  padding: 1rem 1.5rem;
  background-color: #0d1117;
  border-bottom: 1px solid #30363d;
}
.setting-item[data-v-f72ae824] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #30363d;
}
.setting-item[data-v-f72ae824]:last-child {
  border-bottom: none;
}
.setting-info h3[data-v-f72ae824] {
  color: #e0e0e0;
  font-size: 1rem;
  margin: 0 0 0.25rem 0;
}
.setting-info p[data-v-f72ae824] {
  color: #8b949e;
  font-size: 0.875rem;
  margin: 0;
}
.setting-control[data-v-f72ae824] {
  display: flex;
  align-items: center;
}
.btn[data-v-f72ae824] {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary[data-v-f72ae824] {
  background-color: #238636;
  color: white;
  border: 1px solid #2ea043;
}
.btn-primary[data-v-f72ae824]:hover {
  background-color: #2ea043;
}
.btn-secondary[data-v-f72ae824] {
  background-color: #21262d;
  color: #e0e0e0;
  border: 1px solid #30363d;
}
.btn-secondary[data-v-f72ae824]:hover {
  background-color: #30363d;
}
.btn[data-v-f72ae824]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.permission-status[data-v-f72ae824] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #56d364;
}
.permission-status.denied[data-v-f72ae824] {
  color: #f85149;
}
.permission-status.error[data-v-f72ae824] {
  color: #f85149;
}
.permission-status.warning[data-v-f72ae824] {
  color: #d29922;
}
.permission-status i[data-v-f72ae824] {
  font-size: 1rem;
}
.subscription-status[data-v-f72ae824] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-sm[data-v-f72ae824] {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  margin-left: 0.5rem;
}

/* Toggle switch */
.switch[data-v-f72ae824] {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}
.switch input[data-v-f72ae824] {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider[data-v-f72ae824] {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #30363d;
  transition: 0.4s;
  border-radius: 24px;
}
.slider[data-v-f72ae824]:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider[data-v-f72ae824] {
  background-color: #238636;
}
input:checked + .slider[data-v-f72ae824]:before {
  transform: translateX(26px);
}

/* Timezone Select */
.timezone-select[data-v-f72ae824] {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: 1px solid #30363d;
  background-color: #21262d;
  color: #e0e0e0;
  font-size: 0.875rem;
  min-width: 200px;
}
.timezone-select[data-v-f72ae824]:focus {
  outline: none;
  border-color: #58a6ff;
  box-shadow: 0 0 0 2px rgba(88, 166, 255, 0.2);
}

/* Radio Group */
.radio-group[data-v-f72ae824] {
  display: flex;
  gap: 1rem;
}
.radio-label[data-v-f72ae824] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: #e0e0e0;
}
.radio-label input[type="radio"][data-v-f72ae824] {
  accent-color: #238636;
}
.radio-text[data-v-f72ae824] {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Timezone Preview */
.timezone-preview[data-v-f72ae824] {
  background-color: #0d1117;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 1rem;
  min-width: 200px;
}
.preview-item[data-v-f72ae824] {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.preview-item[data-v-f72ae824]:last-child {
  margin-bottom: 0;
}
.preview-label[data-v-f72ae824] {
  font-size: 0.875rem;
  color: #8b949e;
  font-weight: 500;
}
.preview-value[data-v-f72ae824] {
  font-size: 0.875rem;
  color: #e0e0e0;
  font-weight: 500;
}

/* Favorite Teams */
.no-favorites[data-v-f72ae824] {
  text-align: center;
  color: #8b949e;
}
.no-favorites p[data-v-f72ae824] {
  margin: 0.5rem 0;
}
.no-favorites .hint[data-v-f72ae824] {
  font-size: 0.8rem;
  color: #6e7681;
  font-style: italic;
}
.favorite-teams-list[data-v-f72ae824] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 300px;
}
.favorite-team-item[data-v-f72ae824] {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background-color: #0d1117;
  border: 1px solid #30363d;
  border-radius: 6px;
  transition: background-color 0.2s;
}
.favorite-team-item[data-v-f72ae824]:hover {
  background-color: #161b22;
}
.team-info[data-v-f72ae824] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}
.team-logo[data-v-f72ae824] {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #21262d;
  padding: 2px;
}
.team-name[data-v-f72ae824] {
  font-size: 0.875rem;
  font-weight: 500;
  color: #e0e0e0;
  flex: 1;
}
@media (max-width: 768px) {
.favorite-teams-list[data-v-f72ae824] {
    max-width: 100%;
}
.favorite-team-item[data-v-f72ae824] {
    padding: 0.5rem;
}
.team-logo[data-v-f72ae824] {
    width: 28px;
    height: 28px;
}
.team-name[data-v-f72ae824] {
    font-size: 0.8rem;
}
}
@media (max-width: 768px) {
.setting-item[data-v-f72ae824] {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.setting-control[data-v-f72ae824] {
    align-self: flex-start;
}
.radio-group[data-v-f72ae824] {
    flex-direction: column;
    gap: 0.5rem;
}
.timezone-select[data-v-f72ae824] {
    min-width: 100%;
}
.timezone-preview[data-v-f72ae824] {
    min-width: 100%;
}
.favorite-teams-list[data-v-f72ae824] {
    max-width: 100%;
}
.favorite-team-item[data-v-f72ae824] {
    padding: 0.5rem;
}
.team-logo[data-v-f72ae824] {
    width: 28px;
    height: 28px;
}
.team-name[data-v-f72ae824] {
    font-size: 0.8rem;
}
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

a {
  text-decoration: none;
  color: #3498db;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background-color: #3498db;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #2980b9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  margin-bottom: 1rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}
