/* Extra Time - Global Styles */

/* ==================== RESET & BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  color: #ffffff;
  line-height: 1.points-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==================== SUBSCRIPTION TIERS ==================== */
.subscription-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.tier-card {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.tier-card.popular {
  border: 2px solid #00d4ff;
}

.tier-card.popular::before {
  content: "Most Popular";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #00d4ff;
  color: black;
  padding: 0.3rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.tier-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.tier-price {
  font-size: 2rem;
  color: #00d4ff;
  margin-bottom: 1rem;
}

.tier-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.tier-features li {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.tier-features li::before {
  content: "✓ ";
  color: #00d4ff;
  font-weight: bold;
}

/* ==================== NEWS FEED ==================== */
.news-feed {
  margin-bottom: 6rem;
}

.news-item {
  margin-bottom: 1rem;
  cursor: pointer;
}

.news-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, #333, #555);
  border-radius: 10px;
  margin-bottom: 1rem;
  background-size: cover;
  background-position: center;
}

.news-meta {
  color: #00d4ff;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.news-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.news-excerpt {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* ==================== ALERT STATES ==================== */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.alert-success, .auth-success {
  background: rgba(72, 187, 120, 0.2);
  border-color: rgba(72, 187, 120, 0.4);
  color: #68d391;
}

.auth-success {
  background: rgba(0, 255, 0, 0.1);
  color: #4CAF50;
  padding: 0.8rem;
  border: 1px solid rgba(0, 255, 0, 0.2);
  font-size: 0.9rem;
}

.alert-error, .auth-error {
  background: rgba(245, 101, 101, 0.2);
  border-color: rgba(245, 101, 101, 0.4);
  color: #fc8181;
}

.auth-error {
  background: rgba(255, 0, 0, 0.1);
  color: #ff6b6b;
  padding: 0.8rem;
  border: 1px solid rgba(255, 0, 0, 0.2);
  font-size: 0.9rem;
}

.alert-info {
  background: rgba(66, 153, 225, 0.2);
  border-color: rgba(66, 153, 225, 0.4);
  color: #90cdf4;
}

/* ==================== LOADING STATES ==================== */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ff6b6b;
  animation: spin 0.8s ease-in-out infinite;
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.6);
}

.loading::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #00d4ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-top: 1rem;
}

/* ==================== FLOATING ELEMENTS ==================== */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: -2s;
}

.floating-element:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 10%;
  animation-delay: -4s;
}

.floating-element:nth-child(3) {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 5%;
  animation-delay: -1s;
}

/* ==================== DEMO STYLES ==================== */
.demo-section {
  padding: 2rem 0;
  text-align: center;
}

.demo-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.6s ease-out forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .subscription-tiers {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .main-content {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 4rem 0;
  }
  
  .news-feed {
    margin-bottom: 2rem;
  }
  
  .bottom-nav {
    display: none;
  }
  
  .header {
    padding: 1.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  
  .logo {
    font-size: 2.5rem;
  }
  
  .tagline {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .features {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    gap: 1.5rem;
  }
  
  .modal-content, .auth-modal-content {
    margin: 1rem;
    width: calc(100% - 2rem);
    padding: 2rem 1.5rem;
  }
  
  .container {
    padding: 1rem;
  }
  
  .glass-nav {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1rem;
  }
  
  .hero-content {
    padding: 1.5rem 1rem;
  }
  
  .logo {
    font-size: 2rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .team-logo {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .score-display {
    font-size: 2rem;
  }

  .teams-container {
    gap: 0.5rem;
  }

  .vs-section {
    min-width: 100px;
  }
  
  .auth-modal-content {
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 15px;
  }

  .auth-modal-title {
    font-size: 1.5rem;
  }

  .auth-form-input,
  .auth-submit-btn {
    padding: 0.9rem;
  }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.btn:focus,
.form-input:focus,
.form-select:focus,
.nav-link:focus,
.auth-form-input:focus,
.auth-form-select:focus {
  outline: 2px solid #ff6b6b;
  outline-offset: 2px;
}

.auth-form-input:focus,
.auth-form-select:focus {
  outline-color: #00d4ff;
}

/* ==================== DARK MODE SUPPORT ==================== */
@media (prefers-color-scheme: dark) {
  .form-select option,
  .auth-form-select option {
    background: #1a202c;
    color: white;
  }
  
  .auth-form-select option {
    background: #1a1a1a;
  }
}6;
}

/* ==================== ANIMATED BACKGROUND ==================== */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
  animation: backgroundShift 20s ease-in-out infinite;
  z-index: -1;
}

@keyframes backgroundShift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-20px, -20px) rotate(1deg); }
  66% { transform: translate(20px, 20px) rotate(-1deg); }
}

/* ==================== LAYOUT COMPONENTS ==================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.menu-btn:hover {
  color: #00d4ff;
}

/* Main Content */
.main-content {
  margin-top: 80px;
  padding: 0 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== GLASS MORPHISM CARDS ==================== */
.glass-card {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 
    0 8px 32px rgba(31, 38, 135, 0.37),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(31, 38, 135, 0.5);
}

.glass-nav {
  backdrop-filter: blur(25px);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
}

.hero-content {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 3rem 2rem;
  max-width: 600px;
  width: 100%;
  box-shadow: 
    0 8px 32px rgba(31, 38, 135, 0.37),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 300;
}

/* ==================== BUTTON STYLES ==================== */
.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 90, 36, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.auth-trigger-btn {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.auth-trigger-btn:hover {
  background: linear-gradient(45deg, #0099cc, #007acc);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.auth-trigger-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.auth-trigger-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ==================== NAVIGATION ==================== */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  z-index: 1000;
}

.nav-items {
  display: flex;
  justify-content: space-around;
  max-width: 600px;
  margin: 0 auto;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
  color: #00d4ff;
}

.nav-item i {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.nav-item span {
  font-size: 0.8rem;
}

/* ==================== FEATURES SECTION ==================== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(31, 38, 135, 0.4);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ff6b6b;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.feature-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  opacity: 0.8;
}

/* ==================== CONTENT SECTIONS ==================== */
.section-title {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* ==================== GRID LAYOUTS ==================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

/* ==================== MODAL STYLES ==================== */
.modal, .auth-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  animation: modalFadeIn 0.3s ease;
}

.auth-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content, .auth-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  width: 90%;
  max-width: 400px;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: modalSlideIn 0.3s ease;
}

.modal-header, .auth-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  text-align: center;
}

.modal h2, .auth-modal-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.auth-modal-title {
  font-size: 1.8rem;
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.auth-modal-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.close, .auth-modal-close {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
}

.close:hover, .auth-modal-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

.auth-modal-close:hover {
  color: #00d4ff;
}

/* ==================== FORM STYLES ==================== */
.form-group, .auth-form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-input, .form-select, .auth-form-input, .auth-form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.auth-form-input, .auth-form-select {
  padding: 1rem;
  border-radius: 10px;
}

.form-input::placeholder, .auth-form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.auth-form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus, .auth-form-input:focus {
  outline: none;
  border-color: #ff6b6b;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.auth-form-input:focus {
  border-color: #00d4ff;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.form-select, .auth-form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1em;
}

.form-select option, .auth-form-select option {
  background: #2d3748;
  color: white;
}

.auth-form-select option {
  background: #1a1a1a;
}

.form-button, .auth-submit-btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.auth-submit-btn {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  border-radius: 10px;
  text-transform: none;
  letter-spacing: normal;
}

.form-button:hover, .auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
}

.auth-submit-btn:hover {
  background: linear-gradient(45deg, #0099cc, #007acc);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.form-button:disabled, .auth-submit-btn:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.auth-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ==================== AUTH SPECIFIC STYLES ==================== */
.auth-tabs {
  display: flex;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 0.3rem;
}

.auth-tab {
  flex: 1;
  padding: 0.7rem 1rem;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 600;
}

.auth-tab.active {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  color: white;
  transform: translateY(-1px);
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.auth-divider span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0 1rem;
  backdrop-filter: blur(20px);
}

.auth-switch {
  text-align: center;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.auth-switch button {
  background: none;
  border: none;
  color: #00d4ff;
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.9rem;
}

.auth-switch button:hover {
  color: #0099cc;
}

/* ==================== SCORE PREDICTOR ==================== */
.score-predictor-card {
  max-width: 400px;
  margin: 2rem auto;
}

.match-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.match-date {
  color: #00d4ff;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.match-competition {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.teams-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.team {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.away-team .team-logo {
  background: linear-gradient(45deg, #ff6b6b, #cc5555);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.team-name {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.team-form {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  gap: 2px;
}

.form-result {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.form-result.win { background: #4CAF50; }
.form-result.draw { background: #FF9800; }
.form-result.loss { background: #f44336; }

.vs-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

.vs-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.score-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.score-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.score-btn {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #00d4ff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-btn:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.1);
}

.score-display {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  min-width: 40px;
  text-align: center;
  margin: 0 0.5rem;
}

.score-separator {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0.5rem;
}

.prediction-actions {
  text-align: center;
  margin-top: 1.5rem;
}

.submit-prediction {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.submit-prediction:hover {
  background: linear-gradient(45deg, #0099cc, #007acc);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.submit-prediction:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.prediction-info {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.points-info {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.points-item {
  text-align: center;
}

.points-value {
  color: #00d4ff;
  font-weight: bold;
  font-size: 1.1rem;
}
