/* ============================================
   GLOBAL STYLES
   ============================================ */

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

body {
  font-family: 'Poppins', sans-serif;
  background: #000000;
  min-height: 100vh;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.sports-nav {
  background: rgba(195, 191, 191, 0.684);
  padding: 15px 0;
  margin-bottom: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.nav-logo {
  font-size: 1.3em;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.95em;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-link.active {
  background: rgb(0, 0, 0);
}

/* ============================================
   LANDING PAGE
   ============================================ */

.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.header {
  text-align: center;
  margin-bottom: 60px;
}

.main-title {
  font-size: 3.5em;
  color: white;
  margin-bottom: 15px;
  font-weight: 700;
}

.subtitle {
  font-size: 1.3em;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.sport-card {
  background: rgb(255, 255, 255);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgb(0, 0, 0);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
}

.sport-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgb(0, 0, 0);
  border-color: #339af0;;
}

.sport-card.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.sport-card.disabled:hover {
  transform: none;
  border-color: transparent;
}

.sport-icon {
  font-size: 5em;
  text-align: center;
  margin-bottom: 20px;
}

.sport-card h2 {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}

.sport-card p {
  color: #2e2e2e;
  font-size: 1.05em;
  margin-bottom: 25px;
  line-height: 1.7;
  text-align: center;
}

.features {
  margin: 25px 0;
  text-align: left;
}

.feature {
  color: #000000;
  font-size: 0.95em;
  margin: 10px 0;
  padding-left: 10px;
}

.btn {
  display: block;
  background: #339af0;;
  color: rgb(255, 255, 255);
  padding: 15px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
}

.btn.disabled:hover {
  transform: none;
}

.about-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.about-section h3 {
  font-size: 1.8em;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.about-section p {
  color: #666;
  font-size: 1.1em;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 25px;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.tech-badge {
  background: rgb(0, 0, 0);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9em;
  font-weight: 600;
}

.footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95em;
  margin-top: 40px;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

/* ============================================
   PREDICTOR PAGES
   ============================================ */

.container {
  margin: 20px auto;
  background: rgb(0, 0, 0);
  padding: 40px 60px;
  border-radius: 20px;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 1200px;
}

.container h1 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
}

.container p {
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}

.form-section {
  background: rgba(222, 218, 218, 0.684);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.form-group {
  margin: 20px 0;
  display: inline-block;
  width: 45%;
  vertical-align: top;
}

.form-group:first-child {
  margin-right: 5%;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  font-size: 1.05em;
}

select {
  font-size: 16px;
  padding: 12px 15px;
  border-radius: 8px;
  border: 2px solid #ddd;
  width: 100%;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

select:hover {
  border-color: #4dabf7;
}

select:focus {
  outline: none;
  border-color: #4dabf7;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

button {
  margin-top: 20px;
  background: #339af0;
  border: none;
  color: white;
  padding: 14px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

button:hover {
  transform: translateY(-2px);
}

.result-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 30px 0;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 12px;
  padding: 10px;
  background: #f8f9fa;
}

.vs-text h2 {
  font-size: 2.2em;
  color: #ffffff;
  margin: 0 20px;
  font-weight: 700;
}

.result-box {
  margin-top: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #007bff;
}

.result-box h2 {
  color: #1a1a2e;
  font-size: 1.4em;
  margin: 0;
}

.predictions-box {
  margin-top: 50px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.predictions-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.predictions-table th,
.predictions-table td {
  border: 1px solid #e0e0e0;
  padding: 14px 10px;
  text-align: center;
}

.predictions-table th {
  background: #000000;
  color: white;
  font-weight: 600;
}

.predictions-table tr {
  background-color: white;
  color: black;
}

.predictions-table tr:hover {
  background-color: #e3f2fd;
}

.winner {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
  color: white !important;
  font-weight: 700;
}

.edge-medium {
  background-color: #fff3cd !important;
  border-left: 4px solid #ffc107 !important;
}

.edge-big {
  background-color: #d4edda !important;
  border-left: 4px solid #28a745 !important;
}

.confidence-high {
  color: #28a745;
  font-weight: 600;
}

.confidence-medium {
  color: #ffc107;
  font-weight: 600;
}

.confidence-low {
  color: #dc3545;
  font-weight: 600;
}

/* ============================================
   CONFERENCE FILTER
   ============================================ */

.conference-filter {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: center;
}

.conference-filter select {
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.conference-filter select:hover {
  border-color: #4dabf7;
}

.conference-filter select:focus {
  outline: none;
  border-color: #4dabf7;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* ============================================
   NEUTRAL SITE TOGGLE
   ============================================ */

.checkbox {
  display: none;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  background-color: #ccc;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  top: 3px;
  left: 3px;
  transition: all 0.3s;
}

.checkbox:checked + .toggle {
  background-color: #4dabf7;
}

.checkbox:checked + .toggle::after {
  left: 27px;
}

/* ============================================
   LOGIN PAGE
   ============================================ */

.login-page {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
}

.info-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  text-align: center;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-circle {
  width: 220px;
  height: 220px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  border: 3px solid #4dabf7;
  overflow: hidden;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-box h1 {
  font-size: 2.5em;
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.tagline {
  color: #666;
  font-size: 1.05em;
  font-weight: 500;
  margin-bottom: 20px;
}

.description {
  color: #444;
  line-height: 1.7;
  font-size: 1em;
  margin-bottom: 30px;
  font-weight: 400;
}

.records-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.record-card {
  background: #339af0;
  padding: 24px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(77, 171, 247, 0.2);
}

.record-label {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.record-stat {
  color: white;
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}

.record-percentage {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1em;
  font-weight: 600;
}

.season-note {
  color: #666;
  font-size: 0.85em;
  font-weight: 400;
}

.login-container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 50px 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-container h2 {
  font-size: 2em;
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: -0.5px;
}

.login-subtitle {
  color: #666;
  font-size: 0.95em;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 400;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1em;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s ease;
  background: #fafafa;
}

input[type="email"]:focus,
input[type="password"]:focus {
  outline: none;
  border-color: #4dabf7;
  background: white;
  box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.1);
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: #000;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.05em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.login-btn:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.login-btn:disabled {
  background: #999;
  cursor: not-allowed;
  transform: none;
}

.error-message {
  background: #fff5f5;
  color: #c41e3a;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9em;
  display: none;
  border-left: 3px solid #c41e3a;
}

.error-message.show {
  display: block;
}

.loading-spinner {
  display: none;
  text-align: center;
  margin-top: 20px;
}

.loading-spinner.show {
  display: block;
}

.spinner {
  border: 3px solid #f0f0f0;
  border-top: 3px solid #4dabf7;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.info-text {
  text-align: center;
  color: #999;
  font-size: 0.85em;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  font-weight: 400;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .main-title {
    font-size: 2.5em;
  }

  .sports-grid {
    grid-template-columns: 1fr;
  }

  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
  }

  .container {
    padding: 30px 20px;
  }

  .form-group {
    width: 100%;
    margin-right: 0 !important;
  }

  .result-section {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .info-box,
  .login-container {
    padding: 40px 30px;
  }

  .info-box h1 {
    font-size: 2em;
  }

  .records-grid {
    grid-template-columns: 1fr;
  }

  .record-stat {
    font-size: 2em;
  }
}
/* ============================================
   AUTH TABS STYLING
   ============================================ */

/* Tab navigation container */
.auth-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  border-bottom: 2px solid #333;
}

/* Individual tab buttons */
.tab-btn {
  flex: 1;
  padding: 12px 20px;
  background: none;
  border: none;
  color: #999;
  font-size: 1em;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  position: relative;
}

/* Active tab styling */
.tab-btn.active {
  color: #4dabf7;
  border-bottom-color: #4dabf7;
}

/* Tab hover effect */
.tab-btn:hover {
  color: #4dabf7;
}

/* Tab content containers */
.auth-tab {
  display: none;
  animation: fadeIn 0.3s ease;
}

.auth-tab.active {
  display: block;
}

/* Fade in animation for tab switching */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================
   PAYMENT INFO BOX STYLING
   ============================================ */

/* Payment instructions container */
.payment-info {
  margin-top: 30px;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 8px;
  border: 1px solid #333;
  text-align: left;
}

/* Payment info heading */
.payment-info h3 {
  color: #4dabf7;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.1em;
  font-weight: 600;
}

/* Payment instructions list */
.payment-info ol {
  padding-left: 25px;
  margin: 15px 0;
  line-height: 1.8;
  color: #ddd;
  font-size: 0.95em;
}

.payment-info li {
  margin: 10px 0;
}

/* Emphasized text in payment info */
.payment-info strong {
  color: #4dabf7;
  font-weight: 600;
}

/* Payment note at bottom */
.payment-note {
  margin-top: 15px;
  margin-bottom: 0;
  color: #999;
  font-size: 0.85em;
  font-style: italic;
  text-align: center;
}


/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  .auth-tabs {
    gap: 5px;
  }
  
  .tab-btn {
    padding: 10px 15px;
    font-size: 0.9em;
  }
  
  .payment-info {
    padding: 15px;
  }
  
  .payment-info ol {
    padding-left: 20px;
    font-size: 0.9em;
  }
}

/* ============================================
   PAYMENT PENDING PAGE STYLES
   ============================================ */

.payment-pending-container {
  max-width: 800px;
  max-height: 600px;
  margin: 50px auto;
  padding: 10px;
}

.payment-pending-header {
  text-align: center;
  margin-bottom: 40px;
}

.payment-pending-header h1 {
  color: #fff;
  font-size: 2.5em;
  margin: 20px 0 10px 0;
}

.payment-pending-header .subtitle {
  color: #999;
  font-size: 1.2em;
}

.payment-instructions-box {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #333;
}

.payment-instructions-box h2 {
  color: #4dabf7;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8em;
}

.payment-step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.payment-step:last-child {
  margin-bottom: 0;
}

.step-number {
  background: #4dabf7;
  color: #0a0a0a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2em;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: #fff;
  margin: 0 0 10px 0;
  font-size: 1.2em;
}

.venmo-details {
  background: #0a0a0a;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 10px;
}

.venmo-username {
  color: #4dabf7;
  font-size: 1.8em;
  font-weight: 700;
  margin: 0;
}

.venmo-amount {
  color: #fff;
  font-size: 2.2em;
  font-weight: 700;
  margin: 10px 0 0 0;
}

.user-email {
  background: #0a0a0a;
  padding: 15px;
  border-radius: 8px;
  color: #4dabf7;
  font-size: 1.1em;
  font-weight: 600;
  text-align: center;
  margin: 10px 0;
  word-break: break-all;
}

.instruction-text {
  color: #999;
  font-size: 0.95em;
  margin: 10px 0 0 0;
  line-height: 1.6;
}

.payment-footer {
  margin-top: 40px;
  text-align: center;
}

.footer-note {
  color: #999;
  font-size: 0.95em;
  margin: 15px 0;
  line-height: 1.6;
}

.footer-note strong {
  color: #fff;
}

.footer-note a {
  color: #4dabf7;
  text-decoration: none;
}

.footer-note a:hover {
  text-decoration: underline;
}

.logout-btn {
  background: #333;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s;
}

.logout-btn:hover {
  background: #444;
}

/* ============================================
   RESPONSIVE - PAYMENT PENDING
   ============================================ */

@media (max-width: 768px) {
  .payment-pending-container {
    margin: 20px;
    padding: 15px;
  }

  .payment-instructions-box {
    padding: 20px;
  }

  .payment-pending-header h1 {
    font-size: 2em;
  }

  .venmo-username {
    font-size: 1.5em;
  }

  .venmo-amount {
    font-size: 1.8em;
  }
}