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

:root {
  --primary-color: #3b82f6;
  --primary-dark: #1e40af;
  --accent-color: #10b981;
  --dark-bg: #0f172a;
  --darker-bg: #020617;
  --card-bg: #1e293b;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --border-color: #334155;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f3a 100%);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
}

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

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* ===== Header & Navigation ===== */
.header {
  background: linear-gradient(135deg, var(--darker-bg) 0%, #1a1f3a 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo .tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 5px 0 0 0;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--accent-color);
}

/* ===== Hero Banner Section ===== */
.hero-banner {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f3a 100%);
}

.banner-frame {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3), 0 0 40px rgba(16, 185, 129, 0.2);
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  padding: 4px;
}

.banner-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
  pointer-events: none;
  z-index: 1;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  max-height: 500px;
  animation: slideInDown 0.8s ease-out;
}

/* ===== Hero Section ===== */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1a1f3a 100%);
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-text .btn-primary {
  width: auto;
  padding: 15px 40px;
  display: inline-block;
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

/* ===== Features Section ===== */
.features {
  padding: 80px 0;
  background: var(--dark-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-light);
}

.feature-item p {
  color: var(--text-muted);
  margin: 0;
}

/* ===== Sports Section ===== */
.sports {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%),
              url('../img/ephvopdxujbpgow5q7un.avif') center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

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

.sports-badge {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 20px;
  animation: slideInDown 0.6s ease;
}

.sports-grid {
  display: flex;
  gap: 30px;
  margin-top: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 20px 0;
  flex: 1;
  min-width: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) transparent;
}

.sports-grid::-webkit-scrollbar {
  height: 8px;
}

.sports-grid::-webkit-scrollbar-track {
  background: transparent;
}

.sports-grid::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.sports-grid::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

.sports-scroll-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.scroll-btn {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border: 2px solid var(--primary-color);
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(10px);
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.scroll-left {
  order: -1;
}

.scroll-right {
  order: 2;
}

.sport-card {
  flex-shrink: 0;
  min-width: 350px;
  width: 350px;
  background: rgba(30, 41, 59, 0.85);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(51, 65, 85, 0.5);
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sport-card:hover {
  transform: translateY(-15px) scale(1.08);
  border-color: var(--accent-color);
  box-shadow: 0 25px 60px rgba(16, 185, 129, 0.35);
  background: rgba(30, 41, 59, 0.95);
}

.sport-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  animation: slideInDown 0.6s ease;
  height: 70px;
}

.channel-logo {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  animation: slideInDown 0.6s ease;
}

.sport-icon-badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.sport-card:hover .sport-icon-badge {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.5);
}

.sport-card h3 {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  animation: slideInDown 0.6s ease;
}

.sport-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  display: block;
  animation: zoomIn 0.8s ease;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  flex-grow: 1;
}

.sport-card:hover .sport-card-img {
  transform: scale(1.12) rotate(1deg);
}

.sport-card-footer {
  padding-top: 15px;
  border-top: 1px solid rgba(51, 65, 85, 0.5);
}

.sport-card-footer h4 {
  color: var(--text-light);
  margin: 0 0 5px 0;
  font-size: 1.2rem;
}

.sport-card-footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

.sport-card {
  background: rgba(30, 41, 59, 0.85);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(51, 65, 85, 0.5);
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.sport-card:hover {
  transform: translateY(-15px) scale(1.08);
  border-color: var(--accent-color);
  box-shadow: 0 25px 60px rgba(16, 185, 129, 0.35);
  background: rgba(30, 41, 59, 0.95);
}

.sport-card:hover {
  transform: translateY(-15px) scale(1.08);
  border-color: var(--accent-color);
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.25);
}

.sport-card h3 {
  position: relative;
  z-index: 2;
  animation: slideInDown 0.6s ease;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 15px 0;
}

.sport-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 15px;
  display: block;
  animation: zoomIn 0.8s ease;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.sport-card:hover .sport-card-img {
  transform: scale(1.12) rotate(1deg);
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===== Sports Events Section ===== */
.sports-events {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1f3a 0%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.sports-events-grid {
  display: flex;
  gap: 30px;
  margin-top: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 20px 0;
  flex: 1;
  min-width: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) transparent;
}

.sports-events-grid::-webkit-scrollbar {
  height: 8px;
}

.sports-events-grid::-webkit-scrollbar-track {
  background: transparent;
}

.sports-events-grid::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 10px;
}

.sports-events-grid::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.sport-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.sport-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-light);
}

.sport-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

/* ===== Pricing Section ===== */
.pricing {
  padding: 80px 0;
  background: var(--dark-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 15px 0;
}

.pricing-card p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.pricing-card ul {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}

.pricing-card li {
  padding: 10px 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
}

.pricing-card li:last-child {
  border-bottom: none;
}

/* ===== Checkout Section ===== */
.checkout-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f3a 100%);
}

.checkout-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
  align-items: start;
}

.checkout-form-container,
.checkout-summary-container {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.1);
}

.checkout-form-container h3,
.checkout-summary-container h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--text-light);
}

.checkout-form-container h4 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 20px;
  margin-bottom: 15px;
}

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

.form-row:last-child {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input {
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

/* Order Summary */
.order-summary {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: var(--text-light);
}

.plan-name {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
}

.plan-type {
  font-weight: 600;
  margin-top: 4px;
}

.plan-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.summary-divider {
  height: 1px;
  background: var(--border-color);
  margin: 15px 0;
}

.summary-item.total {
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  font-weight: 700;
  font-size: 1.1rem;
}

.summary-item.total span:last-child {
  color: var(--accent-color);
  font-size: 1.3rem;
}

/* Payment Methods */
.payment-methods {
  display: grid;
  gap: 12px;
  margin-bottom: 25px;
}

.payment-option {
  display: flex;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary-color);
  margin-right: 15px;
}

.payment-option:hover {
  border-color: var(--primary-color);
  background: rgba(59, 130, 246, 0.1);
}

.payment-option input[type="radio"]:checked + .payment-label {
  color: var(--primary-color);
}

.payment-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-light);
}

.payment-icon {
  font-size: 1.3rem;
}

/* Checkout Button */
.btn-checkout {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.btn-checkout:active {
  transform: translateY(0);
}

.payment-secure {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive Checkout */
@media (max-width: 768px) {
  .checkout-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== Login CTA Section ===== */
.login-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
  position: relative;
  overflow: hidden;
}

.login-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.login-cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.login-cta-card {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 80px 60px;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.8s ease;
}

.login-cta-card h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 20px;
  background: none;
  -webkit-text-fill-color: unset;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.login-cta-card p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
}

.btn-login-large {
  padding: 25px 80px;
  font-size: 1.4rem;
  font-weight: 700;
  background: white;
  color: #3b82f6;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-login-large:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  background: #f0f9ff;
}

.btn-login-large:active {
  transform: translateY(-2px);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.login-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a1f3a 100%);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  overflow-y: auto;
  padding: 80px 0;
}

.login-section.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form-wrapper {
  max-width: 600px;
  width: 95%;
  margin-top:900px ;
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(10px);
  padding: 70px;
  border-radius: 20px;
  border: 3px solid var(--primary-color);
  box-shadow: 0 20px 80px rgba(59, 130, 246, 0.4), 
              0 0 40px rgba(59, 130, 246, 0.2);
  position: relative;
  animation: slideUp 0.6s ease;
}

.login-form-wrapper h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  text-align: center;
}

.login-form-wrapper::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  opacity: 0.3;
  z-index: -1;
}

.close-login {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 32px;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
  width: 40px;
  height: 40px;
}

.close-login:hover {
  color: var(--primary-color);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-form-wrapper h2 {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  margin-bottom: 12px;
  margin-top: 25px;
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
}

.form-group input {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  background: rgba(2, 6, 23, 0.6);
  color: var(--text-light);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
  background: rgba(2, 6, 23, 0.9);
}

.login-footer {
  text-align: center;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-container {
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-container.active {
  display: block;
}

.required {
  color: #ff6b6b;
  font-weight: 700;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== Sports Gallery Section ===== */
.sports-gallery {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1f3a 0%, #0f172a 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.big-img {
  height: 300px;       
  object-fit: cover;
  margin-top: 15px;
}


.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-item h3 {
  font-size: 1.3rem;
  padding: 20px 20px 10px;
  color: var(--text-light);
}

.gallery-item p {
  padding: 0 20px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Content Section ===== */
.content-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(26, 31, 58, 0.85) 100%),
              url('../img/Les-10-series-Netflix-les-plus-regardees.jpg') center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.content-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.content-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.content-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
  border-color: var(--primary-color);
}

.content-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.content-card h3 {
  font-size: 1.2rem;
  padding: 20px 20px 10px;
  color: var(--text-light);
  margin: 0;
}

.content-card p {
  padding: 0 20px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  flex-grow: 1;
}

.content-card.full-width-banner {
  grid-column: 1 / -1;
  overflow: hidden;
  border: none;
  background: transparent;
  box-shadow: none;
}

.content-card.full-width-banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.content-card.full-width-banner:hover {
  transform: scale(1.02);
  box-shadow: none;
}

.login-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-footer a:hover {
  color: var(--accent-color);
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-large {
  padding: 18px 50px;
  font-size: 1.2rem;
  width: 100%;
  margin-top: 10px;
}

/* ===== Footer ===== */
.footer {
  background: var(--darker-bg);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 20px;
  color: var(--text-muted);
}

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

.footer-section h4 {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-section p {
  margin: 8px 0;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.contact-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0.8;
}

.contact-icon:hover {
  opacity: 1;
  transform: scale(1.15) translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .login-form-wrapper {
    padding: 30px;
  }

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

  .logo h1 {
    font-size: 1.5rem;
  }

  .nav a {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .pricing-card {
    padding: 25px;
  }

  .login-form-wrapper {
    padding: 20px;
  }

  .hero {
    padding: 40px 0 60px;
  }
}

.contact-section {
  padding: 80px 20px;
  text-align: center;
  background: #1a1a1a; /* Slightly lighter than the main background */
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.contact-section .section-subtitle {
  font-size: 1.1rem;
  color: #a0a0a0;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #2a2a2a;
  color: #fff;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #10b981; /* Accent color on focus */
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.contact-form textarea {
  resize: vertical; /* Allow vertical resizing */
  min-height: 120px;
}

.contact-form .btn-primary {
  align-self: center; /* Center the button */
  width: auto;
  padding: 15px 40px;
  font-size: 1.1rem;
}

.success-message {
  background: linear-gradient(135deg, #10b981, #3b82f6);
  color: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  animation: slideInUp 0.5s ease;
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.3);
}

.success-message h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: white;
}

.success-message p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* Simple loading animation */
@keyframes loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: loading 1s ease-in-out infinite;
  margin-right: 10px;
}

/* Login Modal */
.login-section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.login-section.active {
    display: flex;
}

.login-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    position: relative;
}

.close-login {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.form-container {
    display: none;
}

.form-container.active {
    display: block;
}

body.modal-open {
    overflow: hidden;
}