/*
  Core theme styles for BeinConnect
  Matches classes used across views: header, nav, hero, packages, admin, etc.
*/

/* CSS Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; background: #1a0b2e; color: #e5e7eb; line-height: 1.5; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

:root {
  --bg: #0b1020;
  --bg-soft: #0f172a;
  --surface: #111827;
  --surface-2: #1f2937;
  --border: #263043;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --primary: #7c3aed; /* purple */
  --primary-2: #6d28d9;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #0ea5e9;
  --accent: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  --radius: 12px;
  --shadow: 0 10px 25px rgba(0,0,0,.35);
}

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* Top Match Bar - Compact Design */
.top-match-bar {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-bottom: 2px solid rgba(124, 58, 237, 0.3);
  padding: 12px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}
.top-match-bar .top-match-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.top-match-bar .match-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid rgba(124, 58, 237, 0.3);
  border-radius: 12px;
  padding: 12px 24px;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.15);
  max-width: fit-content;
}
.top-match-bar .hl-teams {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  color: #111827;
}
.top-match-bar .team-badge {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.top-match-bar .vs {
  font-size: 14px;
  font-weight: 600;
  color: rgba(107, 114, 128, 0.7);
  margin: 0 4px;
}
.top-match-bar .hl-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 2px solid rgba(124, 58, 237, 0.2);
  padding-left: 20px;
}
.top-match-bar .kickoff {
  font-size: 14px;
  font-weight: 700;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(124, 58, 237, 0.3);
  white-space: nowrap;
}
.top-match-bar .countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-match-bar .time-box {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 8px;
  padding: 6px 10px;
  text-align: center;
  min-width: 50px;
  box-shadow: 0 2px 6px rgba(124, 58, 237, 0.1);
}
.top-match-bar .time-box .num {
  display: block;
  font-weight: 900;
  font-size: 18px;
  color: #111827;
  line-height: 1;
}
.top-match-bar .time-box .lbl {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3px;
  margin-top: 3px;
  font-weight: 600;
  color: #7c3aed;
  text-transform: uppercase;
}
.btn-compact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  border-radius: 10px;
  border: none;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-compact-cta::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 ease;
}
.btn-compact-cta:hover::before {
  left: 100%;
}
.btn-compact-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 28px rgba(220, 38, 38, 0.5);
}
.btn-compact-cta:active {
  transform: translateY(0) scale(1);
}
.btn-nav-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff !important;
  border-radius: 14px;
  border: none;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-nav-apply::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 ease;
}
.btn-nav-apply:hover::before {
  left: 100%;
}
.btn-nav-apply:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 28px rgba(220, 38, 38, 0.5);
}
.btn-nav-apply:active {
  transform: translateY(0) scale(1);
}

/* Header */
.site-header { 
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%); 
  color: #111827; 
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #7c3aed 0%, #2563eb 50%, #7c3aed 100%) 1;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.12), 0 4px 16px rgba(0,0,0,.08); 
}
.header-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  gap: 60px;
  padding: 24px 0; 
  position: relative; 
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.nav {
  margin-left: auto;
}
.brand { 
  font-weight: 800; 
  letter-spacing: .2px; 
  color: #111827; 
  display: flex; 
  align-items: center; 
  flex: 0 0 auto; 
  transition: transform 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}
.brand:hover {
  transform: scale(1.05);
}
.brand-logo { 
  height: clamp(35px, 6vw, 45px); 
  width: auto; 
  max-width: 200px;
  object-fit: contain; 
  filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.3)); 
  flex-shrink: 0; 
  transition: filter 0.3s ease;
}
.brand-logo:hover {
  filter: drop-shadow(0 6px 16px rgba(124, 58, 237, 0.5));
}
.brand-text { display: flex; flex-direction: column; }
.brand-name { 
  font-size: 40px; 
  font-weight: 900; 
  color: #dc2626; 
  line-height: 1; 
  text-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
  letter-spacing: -1px;
}
.brand-subtitle { 
  font-size: 16px; 
  font-weight: 600; 
  color: #7c3aed; 
  margin-top: 4px; 
  letter-spacing: 0.5px;
}
.site-header .header-inner { min-height: 110px; }

/* Mobile hamburger menu */
.mobile-menu-toggle { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 30px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 10000; position: relative; }
.mobile-menu-toggle:focus { outline: 2px solid #3b82f6; outline-offset: 2px; }
.hamburger-line { width: 100%; height: 3px; background: #374151; border-radius: 2px; transition: all 0.3s ease; transform-origin: center; }
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Hide mobile menu header on desktop */
.mobile-menu-header { display: none; }

.nav { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  flex-wrap: wrap; 
}
.nav-link { 
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  white-space: nowrap; 
  line-height: 1; 
  padding: 18px 28px; 
  border-radius: 14px; 
  color: #374151; 
  font-weight: 600; 
  font-size: 18px; 
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1); 
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9)); 
  border: 2px solid rgba(124, 58, 237, 0.1); 
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.nav-link span {
  font-size: 22px;
}
.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(37, 99, 235, 0.1));
  transition: left 0.3s ease;
  z-index: -1;
}
.nav-link:hover { 
  color: #7c3aed; 
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 250, 252, 1)); 
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.15);
}
.nav-link:hover::before {
  left: 0;
}
.nav-link.is-active { 
  background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%); 
  color: #ffffff; 
  font-weight: 700; 
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4), 0 4px 12px rgba(37, 99, 235, 0.3);
  border-color: transparent;
  transform: translateY(-2px);
}
.nav-dropdown-toggle { 
  cursor: pointer; 
  position: relative; 
  padding-right: 36px; 
}
.nav-dropdown-toggle::after { 
  content: "▾"; 
  position: absolute; 
  right: 14px; 
  top: 50%; 
  transform: translateY(-50%); 
  opacity: .8; 
  transition: transform .3s ease; 
  font-size: 14px;
  font-weight: bold;
}
.nav-item.open .nav-dropdown-toggle::after { 
  transform: translateY(-50%) rotate(180deg); 
}
.nav-dropdown { 
  position: absolute; 
  inset: auto auto auto 0; 
  top: calc(100% + 12px); 
  min-width: 320px; 
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%); 
  border: 2px solid rgba(124, 58, 237, 0.2); 
  border-radius: 16px; 
  padding: 12px; 
  box-shadow: 0 24px 48px rgba(124, 58, 237, 0.15), 0 12px 24px rgba(0,0,0,.1); 
  display: none; 
  z-index: 100; 
  animation: dropdownSlide 0.3s ease;
}
@keyframes dropdownSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-item.open .nav-dropdown { 
  display: block; 
}
.dropdown-link { 
  display: flex;
  align-items: center;
  padding: 12px 16px; 
  border-radius: 12px; 
  color: #374151; 
  font-weight: 600;
  font-size: 16px;
  border: 1px solid transparent; 
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.dropdown-link::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #7c3aed;
  font-weight: bold;
}
.dropdown-link:hover { 
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(37, 99, 235, 0.1)); 
  border-color: rgba(124, 58, 237, 0.2); 
  color: #7c3aed;
  transform: translateX(8px);
  padding-left: 24px;
}
.dropdown-link:hover::before {
  left: 8px;
  opacity: 1;
}

.nav-item { position: relative; }

/* Match Banner (After hero banner) */
.match-banner {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 30px 0;
  border-bottom: 2px solid rgba(124, 58, 237, 0.15);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.1);
}
.match-banner .container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.match-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.match-banner .header-live {
  flex: 0 1 auto;
  min-width: 300px;
}
.match-banner-cta {
  flex-shrink: 0;
}
.btn-opportunity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4), 0 4px 12px rgba(185, 28, 28, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-opportunity::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 ease;
}
.btn-opportunity:hover::before {
  left: 100%;
}
.btn-opportunity:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.5), 0 6px 16px rgba(185, 28, 28, 0.4);
}
.btn-opportunity:active {
  transform: translateY(0) scale(1);
}

/* beIN CONNECT Hero Banner - Full Width */
.bein-hero-banner {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid rgba(168, 85, 247, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bein-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 400px;
  object-position: center;
}

/* Hero Banner */
.hero-banner { 
  width: 100%; 
  overflow: hidden; 
  background: #000; 
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-banner-img { 
  width: 100%; 
  height: auto; 
  display: block; 
  object-fit: contain;
  max-height: none;
}

/* Desktop - Mobile Banner Control */
.hero-banner-mobile {
  display: none;
}

.hero-banner-desktop {
  display: block;
}

/* Hero CTA Section - Below Banner */
.hero-cta-section {
  background: linear-gradient(180deg, #1a0b2e 0%, #2d1b4e 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.hero-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  animation: fadeInScale 0.8s ease-out;
  padding: 0 20px;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 50px;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  border-radius: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.6), 0 0 0 0 rgba(220, 38, 38, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
  0%, 100% {
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.6), 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  50% {
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.8), 0 0 0 20px rgba(220, 38, 38, 0);
  }
}

.hero-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.hero-cta-button:hover::before {
  left: 100%;
}

.hero-cta-button:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 15px 50px rgba(220, 38, 38, 0.8), 0 0 0 8px rgba(220, 38, 38, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-cta-button:active {
  transform: translateY(-2px) scale(1.02);
}

.cta-icon {
  font-size: 28px;
  animation: bounce 2s infinite;
}

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

.cta-text {
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Home Packages Section - Modern Design */
.home-packages-section {
  background: #f8f9fa;
  padding: 80px 0;
  border-top: 2px solid #e5e7eb;
}

.home-packages-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.home-packages-section .section-head {
  text-align: center;
  margin-bottom: 60px;
}

.home-packages-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  color: #7c3aed;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.home-packages-subtitle {
  font-size: 18px;
  color: #6b7280;
  margin: 0;
  font-weight: 400;
}

.home-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.home-package-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.home-package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.3);
}

.home-package-image-wrapper {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 40px 20px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.home-package-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.home-package-image {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease;
}

.home-package-card:hover .home-package-image {
  transform: scale(1.05);
}

.home-package-content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.home-package-title {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin: 0;
  line-height: 1.3;
}

.home-package-description {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.home-package-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
  border: none;
  cursor: pointer;
}

.home-package-btn:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.5);
}

/* Application Steps Section - Modern Purple Version */
.application-steps-modern {
  background: linear-gradient(180deg, #1a0b2e 0%, #2d1b4e 50%, #1a0b2e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.application-steps-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.application-steps-modern .section-head {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  padding: 0 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.steps-grid-modern {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 32px;
  align-items: flex-start;
  justify-items: start;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 40px;
}

.step-card-modern {
  background: linear-gradient(180deg, #3d1f5c 0%, #2a1444 100%);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: left;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  width: 100%;
}

.step-card-modern:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(124, 58, 237, 0.5);
  border-color: rgba(168, 85, 247, 0.6);
}

.step-number-modern {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.step-icon-modern {
  font-size: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
  text-align: left;
}

.step-title-modern {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.step-desc-modern {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

.step-arrow-modern {
  font-size: 32px;
  color: rgba(168, 85, 247, 0.6);
  font-weight: bold;
  align-self: center;
}

/* Application Steps Section - Original White Version */
.application-steps {
  background: #ffffff;
  padding: 80px 40px;
  border-bottom: 2px solid rgba(124, 58, 237, 0.1);
}
.application-steps .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.steps-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  text-align: center;
  margin: 0 0 60px;
  color: #111827;
  line-height: 1.2;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 48px;
  justify-items: start;
}
.step-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid rgba(124, 58, 237, 0.2);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.5);
}
.step-number {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}
.step-icon {
  font-size: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  text-align: left;
}
.step-title {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 12px;
  line-height: 1.3;
}
.step-desc {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
.step-arrow {
  font-size: 32px;
  color: rgba(124, 58, 237, 0.6);
  font-weight: bold;
}
.steps-cta {
  text-align: left;
}
.btn-steps-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 48px;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  color: #ffffff;
  border-radius: 16px;
  border: none;
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.4), 0 6px 16px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-steps-start::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.btn-steps-start:hover::before {
  left: 100%;
}
.btn-steps-start:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 48px rgba(124, 58, 237, 0.5), 0 10px 24px rgba(37, 99, 235, 0.4);
}

/* Main wrapper */
.main-content { padding: 0; background: transparent; }
.main-content:not(.container) { padding: 0; margin: 0; width: 100%; }
.main-content.container { background: #ffffff; }

/* Cards */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 14px; border-radius: 10px; border: 1px solid transparent; background: var(--surface-2); color: var(--text); cursor: pointer; transition: .2s ease; box-shadow: 0 6px 14px rgba(0,0,0,.25); }
.btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary, .btn.btn-primary { background: var(--accent); border-color: rgba(255,255,255,.08); color: #fff; box-shadow: 0 10px 20px rgba(37,99,235,.35); }
.btn-success { background: linear-gradient(135deg, var(--success), #34d399); color: #052e2b; }
.btn-warning { background: linear-gradient(135deg, var(--warning), #fbbf24); color: #3b2a06; }
.btn-danger { background: linear-gradient(135deg, var(--danger), #f87171); color: #3b0f0f; }
.btn-info { background: linear-gradient(135deg, var(--info), #38bdf8); color: #062c3b; }
.btn-secondary { background: #374151; color: #f3f4f6; }

.btn-group { display: inline-flex; gap: 8px; flex-wrap: wrap; }

/* Sections */
.section-head { display: grid; gap: 6px; margin: 8px 0 18px; }
.section-title { margin: 0; font-size: 22px; font-weight: 700; }
.section-desc { margin: 0; color: var(--muted); }

/* Packages grid */
.packages { 
  display: grid; 
  gap: 16px; 
  padding: 80px 40px; 
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  margin-top: 40px;
}
.packages .section-head { 
  text-align: center; 
  margin-bottom: 60px;
}
.packages .section-title { 
  font-size: clamp(36px, 5vw, 52px); 
  font-weight: 900; 
  color: #111827;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.packages .section-desc { 
  color: #6b7280; 
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}
.match-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.match-grid .match-card { grid-column: span 6; }
.match-teams .team { display: inline-block; background: #000; color: #fff; padding: 4px 8px; border-radius: 8px; font-weight: 700; }
.match-teams .team::after { content: "  ▾"; opacity: .85; font-weight: 600; }
.package-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.package-card { 
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 2px solid rgba(124, 58, 237, 0.15);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed 0%, #2563eb 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.package-card:hover::before {
  transform: scaleX(1);
}
.package-card:hover { 
  transform: translateY(-12px); 
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.25);
  border-color: rgba(124, 58, 237, 0.4);
}
.package-hero { 
  width: 100%; 
  height: 220px; 
  background-color: #0f172a;
  position: relative;
  overflow: hidden;
}
.package-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}
.package-body { 
  padding: 28px 24px; 
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.package-title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  line-height: 1.3;
}
.package-desc {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.price { font-size: 24px; font-weight: 800; letter-spacing: .2px; }
.features { display: grid; gap: 8px; color: var(--muted); }
.features li::before { content: "✔"; color: var(--success); margin-right: 8px; }
.card-actions { 
  display: flex; 
  gap: 12px; 
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
}
.card-actions .btn--primary {
  flex: 1;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  border: none;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.3px;
}
.card-actions .btn--primary:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.5);
  transform: translateY(-2px);
}

/* Matches bar */
.matches-bar { margin: 12px 0 18px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 10px; overflow-x: auto; }
.matches-bar-inner { display: grid; grid-auto-flow: column; gap: 12px; align-items: center; }
.mb-item { background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; display: grid; gap: 6px; min-width: 240px; }
.mb-teams { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.tname { white-space: nowrap; }
.mb-time { color: var(--muted); font-size: 12px; }
.vs { opacity: .6; }

/* Header live card - Enhanced */
.header-live { display: flex; align-items: center; gap: 20px; justify-content: flex-end; justify-self: end; }
.match-card { 
  display: grid; 
  gap: 16px; 
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%); 
  border: 2px solid rgba(124, 58, 237, 0.3); 
  border-radius: 16px; 
  padding: 24px 28px; 
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15), 0 6px 16px rgba(0, 0, 0, 0.1); 
  backdrop-filter: blur(10px);
}
.hl-teams { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  font-weight: 800; 
  font-size: 24px;
  color: #111827;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.team-badge { 
  width: 48px; 
  height: 48px; 
  object-fit: contain; 
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.vs {
  font-size: 20px;
  font-weight: 600;
  color: rgba(107, 114, 128, 0.8);
}
.hl-meta { 
  display: flex; 
  align-items: center; 
  gap: 20px; 
  color: var(--muted); 
}
.kickoff {
  font-size: 18px;
  font-weight: 700;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(124, 58, 237, 0.3);
}
.countdown { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}
.countdown .time-box { 
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); 
  border: 2px solid rgba(124, 58, 237, 0.3); 
  border-radius: 12px; 
  padding: 12px 16px; 
  text-align: center; 
  min-width: 80px; 
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1), inset 0 1px 0 rgba(124, 58, 237, 0.05); 
}
.time-box .num { 
  display: block; 
  font-weight: 900; 
  font-size: 28px; 
  color: #111827; 
  line-height: 1;
  text-shadow: 0 2px 4px rgba(124, 58, 237, 0.15);
}
.time-box .lbl { 
  display: block; 
  font-size: 12px; 
  letter-spacing: .5px; 
  opacity: .9; 
  margin-top: 6px;
  font-weight: 600;
  color: #7c3aed;
}
.countdown[data-status="started"] { color: var(--warning); }

/* Forms */
.form-container { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); }
.form-group { display: grid; gap: 6px; margin-bottom: 12px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
label { color: var(--muted); font-size: 14px; }
input[type="text"], input[type="number"], input[type="file"], input[type="password"], select, textarea { width: 100%; padding: 10px 12px; background: #0f172a; color: var(--text); border: 1px solid var(--border); border-radius: 10px; outline: none; transition: border-color .15s ease, box-shadow .15s ease; }
input:focus, select:focus, textarea:focus { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,.2); }
.preview { background: #0f172a; border: 1px dashed var(--border); border-radius: 12px; padding: 10px; text-align: center; }
.actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* Tables (admin) */
.table-container { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px 14px; border-bottom: 1px solid var(--border); text-align: left; }
th { background: #0f172a; color: #cbd5e1; font-weight: 700; }
tbody tr:hover { background: rgba(255,255,255,.02); }

/* Admin header/topbar */
.topbar { display: flex; align-items: center; justify-content: space-between; padding: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; }
.topbar .link { color: #93c5fd; }
.notice { color: var(--muted); }

/* Login */
.login-container { width: min(420px, 92%); margin: 48px auto; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 22px; box-shadow: var(--shadow); }
.login-header { display: grid; gap: 6px; text-align: center; margin-bottom: 12px; }
.error { color: #fecaca; background: #7f1d1d; border: 1px solid #ef4444; padding: 8px 10px; border-radius: 10px; }

/* Footer - New Design */
.site-footer { 
  background: #f8f9fa; 
  border-top: 2px solid #e5e7eb;
  padding: 0;
  margin-top: 0;
  width: 100%;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-brand-name {
  font-size: 32px;
  font-weight: 900;
  color: #dc2626;
  margin: 0;
  line-height: 1;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  margin: 0;
  letter-spacing: 0.5px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-title {
  font-size: 14px;
  font-weight: 800;
  color: #7c3aed;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-menu li {
  position: relative;
  padding-left: 12px;
}

.footer-menu li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #7c3aed;
  font-weight: bold;
  font-size: 18px;
}

.footer-menu a {
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-menu a:hover {
  color: #7c3aed;
  transform: translateX(4px);
}

.footer-bottom {
  background: #e5e7eb;
  padding: 20px 0;
  border-top: 1px solid #d1d5db;
}

.footer-disclaimer {
  text-align: center;
  color: #4b5563;
  font-size: 12px;
  margin: 0 0 16px 0;
  line-height: 1.8;
  padding: 16px 20px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-disclaimer strong {
  color: #7c3aed;
  font-weight: 700;
  display: inline;
}

.footer-copyright {
  text-align: center;
  color: #6b7280;
  font-size: 13px;
  margin: 0;
  font-weight: 500;
}

/* App Store Buttons */
.app-store-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.app-store-link {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-store-link:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

.app-store-badge {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Desktop: Show in brand section, hide in footer-bottom */
.app-store-desktop {
  display: flex;
}

.app-store-mobile {
  display: none;
}

/* Badges */
.type-badge { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 12px; border: 1px solid var(--border); background: #0f172a; color: var(--muted); }
.type-category { color: #fef3c7; background: #7c2d12; border-color: #f59e0b; }
.type-package { color: #d1fae5; background: #064e3b; border-color: #10b981; }

/* Legal Pages (Gizlilik, KVKK) */
.legal-page {
  background: #ffffff;
  min-height: 100vh;
  padding: 60px 0;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  background: #ffffff;
}

.legal-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  color: #111827;
  margin: 0 0 24px 0;
  line-height: 1.2;
  text-align: center;
}

.legal-intro {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  margin: 0 0 40px 0;
  padding: 20px;
  background: #f8fafc;
  border-left: 4px solid #7c3aed;
  border-radius: 8px;
}

.legal-section {
  margin-bottom: 36px;
}

.legal-subtitle {
  font-size: 22px;
  font-weight: 800;
  color: #7c3aed;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.legal-section p {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin: 0 0 16px 0;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.legal-list li {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.legal-list li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: #7c3aed;
  font-weight: bold;
  font-size: 20px;
}

.legal-contact {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  margin: 16px 0;
}

.legal-contact strong {
  color: #111827;
  display: block;
  margin-bottom: 8px;
}

.legal-date {
  font-size: 14px;
  color: #6b7280;
  text-align: center;
  padding: 20px 0;
  border-top: 2px solid #e5e7eb;
  margin-top: 40px;
}

.legal-actions {
  text-align: center;
  margin-top: 40px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: #ffffff;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.btn-back:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.5);
}

/* Movies Slider Section */
.movies-slider-section {
  background: linear-gradient(180deg, #1a0b2e 0%, #2d1b4e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.movies-slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  background-image: 
    url('../../Digiturk resimleri/filmler/1.webp'),
    url('../../Digiturk resimleri/filmler/4.webp'),
    url('../../Digiturk resimleri/filmler/6.webp'),
    url('../../Digiturk resimleri/filmler/10.webp'),
    url('../../Digiturk resimleri/filmler/3.webp'),
    url('../../Digiturk resimleri/filmler/7.webp'),
    url('../../Digiturk resimleri/filmler/9.webp'),
    url('../../Digiturk resimleri/filmler/2.webp');
  background-size: 200px auto;
  background-position: 
    10% 20%,
    85% 15%,
    15% 80%,
    90% 75%,
    30% 10%,
    70% 85%,
    50% 90%,
    5% 50%;
  background-repeat: no-repeat;
  filter: blur(3px);
  pointer-events: none;
}

.movies-content-wrapper {
  position: relative;
  z-index: 2;
}

.movies-slider-section .section-head {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.movies-slider-container {
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 0 40px;
  overflow: hidden;
  position: relative;
}

.movies-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.movie-card {
  flex: 0 0 calc((100% - 144px) / 7); /* 7 items on desktop, 6 gaps of 24px = 144px */
  min-width: calc((100% - 144px) / 7);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.movie-card:hover {
  transform: translateY(-12px) scale(1.05);
  z-index: 10;
}

/* Slider Dots */
.movies-slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.movies-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.movies-slider-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.movies-slider-dot.active {
  background: #a855f7;
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.movie-poster {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(168, 85, 247, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.movie-poster::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.movie-card:hover .movie-poster::before {
  opacity: 1;
}

.movie-card:hover .movie-poster {
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.6);
  border-color: rgba(168, 85, 247, 0.8);
}

.movies-cta {
  text-align: center;
  padding: 0 20px;
}

.movies-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 50px;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  border-radius: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.6);
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.movies-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.movies-cta-button:hover::before {
  left: 100%;
}

.movies-cta-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 50px rgba(220, 38, 38, 0.8);
  border-color: rgba(255, 255, 255, 0.5);
}

.movies-cta-icon {
  font-size: 28px;
}

.movies-cta-text {
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Floating Sticky CTA Button - WhatsApp Style */
.floating-cta-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  padding: 0;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5), 0 0 0 0 rgba(220, 38, 38, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  animation: slideInRight 0.8s ease-out, floating-pulse 3s infinite 1s;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floating-pulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.02);
  }
}

.floating-cta-button:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 50px rgba(220, 38, 38, 0.7), 0 0 0 10px rgba(220, 38, 38, 0.2);
}

.floating-cta-button:active {
  transform: scale(0.98);
}

.floating-cta-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  position: relative;
  z-index: 2;
}

.floating-cta-icon {
  font-size: 32px;
  animation: shake 0.8s infinite;
}

@keyframes shake {
  0%, 100% {
    transform: rotate(0deg);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: rotate(-10deg);
  }
  20%, 40%, 60%, 80% {
    transform: rotate(10deg);
  }
}

.floating-cta-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-cta-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.floating-cta-subtitle {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.floating-cta-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: rgba(220, 38, 38, 0.5);
  animation: pulse-ring 2s infinite;
  z-index: 1;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Utility */
.wrap { width: min(1120px, 92%); margin: 0 auto; }
.reveal { opacity: 0; transform: translateY(10px); transition: opacity .4s ease, transform .4s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Top live bar (optional) */
.top-live-bar { display: grid; gap: 8px; grid-auto-flow: column; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; }
.tlb-close { background: transparent; border: 1px solid var(--border); color: var(--muted); padding: 6px 8px; border-radius: 8px; cursor: pointer; }
.is-hidden { opacity: 0; transform: translateY(-6px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }

/* beIN CONNECT Packages Section - Full Width */
.bein-packages-section {
  background: linear-gradient(180deg, #1a0b2e 0%, #2d1b4e 50%, #1a0b2e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.bein-packages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.bein-packages-section .section-head {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  padding: 0 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.bein-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 16px 0;
  text-shadow: 0 4px 20px rgba(124, 58, 237, 0.5);
}

.bein-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 400;
}

.bein-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* TOD ve diğer 4 kartlı sayfalar için 2x2 grid */
.bein-cards-grid:has(.bein-package-card:nth-child(4):last-child) {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1400px;
}

@media (min-width: 1200px) {
  .bein-cards-grid:has(.bein-package-card:nth-child(4):last-child) {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
  }
}

/* 2 kartlı sayfalar için ortalı düzen */
.bein-cards-grid:has(.bein-package-card:nth-child(2):last-child) {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  max-width: 900px;
  justify-content: center;
  gap: 40px;
}

/* Kutusuz TV ve 3 kartlı sayfalar için özel düzen */
.bein-cards-grid:has(.bein-package-card:nth-child(3):last-child) {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 1200px;
  justify-content: center;
}

.bein-package-card {
  background: linear-gradient(180deg, #3d1f5c 0%, #2a1444 100%);
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(168, 85, 247, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.bein-package-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(124, 58, 237, 0.5);
  border-color: rgba(168, 85, 247, 0.6);
}

.bein-card-header {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3) 0%, rgba(168, 85, 247, 0.2) 100%);
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.bein-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.bein-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.package-name {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.package-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

.team-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
  border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.team-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.plus-icon {
  font-size: 28px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.6);
}

.eglence-badge {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.badge-text {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0.3px;
}

.league-logos-section {
  padding: 12px 0;
}

.league-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.league-badge {
  position: relative;
  transition: transform 0.3s ease;
}

.league-badge:hover {
  transform: scale(1.1);
}

.league-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge-item {
  position: relative;
}

.league-icon {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.badge-item:hover .league-icon {
  transform: scale(1.15);
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.package-features li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}

.package-features li::before {
  content: '✓';
  color: #10b981;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
}

.package-pricing {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(168, 85, 247, 0.15) 100%);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.old-price {
  font-size: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  position: relative;
}

.old-price::before {
  content: '₺';
  font-size: 18px;
  margin-right: 2px;
}

.price-label {
  background: #dc2626;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

.current-price {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 4px 16px rgba(124, 58, 237, 0.6);
}

.current-price::before {
  content: '₺';
  font-size: 32px;
  margin-right: 4px;
  vertical-align: super;
}

.package-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.btn-buy-now {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
  text-transform: none;
  letter-spacing: 0.3px;
}

.btn-buy-now:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #9333ea 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.6);
}

.btn-details {
  background: transparent;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: 2px solid rgba(168, 85, 247, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-details:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.8);
  transform: translateY(-2px);
}

/* ================================
   MODERN APPLICATION FORM STYLES
   ================================ */

.modern-apply-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 20px;
}

.modern-apply-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.apply-header {
  text-align: center;
  margin-bottom: 40px;
}

.apply-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.apply-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px 0;
}

/* Step Indicators */
.apply-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 3px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  transition: all 0.3s ease;
}

.step-indicator.active .step-number {
  background: #fff;
  border-color: #fff;
  color: #764ba2;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
}

.step-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-indicator.active .step-label {
  color: #fff;
}

.step-line {
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin-top: -25px;
}

/* Form Card */
.modern-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Alert Messages */
.alert-error {
  background: linear-gradient(135deg, #fee 0%, #fdd 100%);
  border: 2px solid #f5c6cb;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 25px;
  color: #721c24;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideDown 0.3s ease;
}

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

.modern-form {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* Form Sections */
.form-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}

/* Form Groups */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
  display: block;
}

.form-input,
.form-select {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  color: #000000;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: none;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: none;
  color: #000000;
}

.form-input:hover,
.form-select:hover {
  background: #ffffff;
  border-color: #e2e8f0;
  color: #000000;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 45px;
}

.form-hint {
  font-size: 12px;
  color: #718096;
  margin-top: 4px;
}

/* Security Section */
.security-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f4ff 100%);
  padding: 25px;
  border-radius: 16px;
  border: 2px dashed #c3b6e0;
}

.captcha-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
}

.captcha-question {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.captcha-icon {
  font-size: 48px;
}

.captcha-text {
  font-size: 16px;
  font-weight: 600;
  color: #4a5568;
  margin: 0;
}

.math-question {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 28px;
  font-weight: 700;
  color: #2d3748;
}

.math-num {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
}

.math-operator,
.math-equals {
  color: #764ba2;
  font-size: 32px;
}

.captcha-input {
  width: 100px;
  padding: 15px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  background: #f7fafc;
  border: 3px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.captcha-input:focus {
  outline: none;
  background: #fff;
  border-color: #764ba2;
  box-shadow: 0 0 0 4px rgba(118, 75, 162, 0.1);
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 20px;
  background: #f7fafc;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.checkbox-label:hover {
  background: #edf2f7;
  border-color: #cbd5e0;
}

.checkbox-label input[type="checkbox"] {
  width: 22px;
  height: 22px;
  cursor: pointer;
  accent-color: #764ba2;
  margin-top: 2px;
}

.checkbox-text {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
}

.checkbox-text a {
  color: #764ba2;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.checkbox-text a:hover {
  border-bottom-color: #764ba2;
}

/* Form Actions */
.form-actions-modern {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.btn-submit-modern {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(118, 75, 162, 0.4);
}

.btn-submit-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(118, 75, 162, 0.5);
}

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

.btn-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-submit-modern:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-cancel-modern {
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #718096;
  background: transparent;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cancel-modern:hover {
  background: #f7fafc;
  border-color: #cbd5e0;
  color: #4a5568;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
  .modern-apply-section {
    padding: 50px 20px;
  }

  .modern-apply-container {
    max-width: 700px;
  }

  .apply-title {
    font-size: 38px;
  }

  .apply-subtitle {
    font-size: 17px;
  }

  .apply-steps {
    gap: 15px;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .step-label {
    font-size: 12px;
  }

  .step-line {
    width: 40px;
    margin-top: -22px;
  }

  .modern-form-card {
    padding: 40px 30px;
  }

  .form-section {
    gap: 18px;
  }

  .form-section-title {
    font-size: 19px;
  }

  .form-input,
  .form-select {
    padding: 13px 16px;
    font-size: 15px;
  }

  .form-label {
    font-size: 14px;
  }

  .captcha-box {
    padding: 20px;
  }

  .math-question {
    gap: 12px;
    font-size: 26px;
  }

  .math-num {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .captcha-input {
    width: 90px;
    font-size: 22px;
  }

  .checkbox-label {
    padding: 18px;
  }

  .btn-submit-modern {
    padding: 16px 36px;
    font-size: 15px;
  }

  .btn-cancel-modern {
    padding: 16px 28px;
    font-size: 15px;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
  .modern-apply-section {
    padding: 30px 15px;
    min-height: auto;
  }

  .modern-apply-container {
    max-width: 100%;
  }

  .apply-header {
    margin-bottom: 30px;
  }

  .apply-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .apply-subtitle {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .apply-steps {
    gap: 8px;
    margin-top: 20px;
  }

  .step-number {
    width: 38px;
    height: 38px;
    font-size: 16px;
    border-width: 2px;
  }

  .step-label {
    font-size: 10px;
    letter-spacing: 0.3px;
  }

  .step-line {
    width: 25px;
    height: 2px;
    margin-top: -19px;
  }

  .modern-form-card {
    padding: 25px 16px;
    border-radius: 16px;
  }

  .alert-error {
    padding: 14px 16px;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .modern-form {
    gap: 28px;
  }

  .form-section {
    gap: 16px;
  }

  .form-section-title {
    font-size: 17px;
    padding-bottom: 10px;
  }

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

  .form-group {
    gap: 6px;
  }

  .form-label {
    font-size: 13px;
  }

  .form-input,
  .form-select {
    padding: 12px 14px;
    font-size: 15px;
    border-radius: 10px;
  }

  .form-hint {
    font-size: 11px;
  }

  .security-section {
    padding: 20px;
  }

  .captcha-box {
    padding: 18px;
  }

  .captcha-icon {
    font-size: 40px;
  }

  .captcha-text {
    font-size: 14px;
  }

  .math-question {
    gap: 8px;
    font-size: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .math-num {
    width: 48px;
    height: 48px;
    font-size: 18px;
    border-radius: 10px;
  }

  .math-operator,
  .math-equals {
    font-size: 24px;
  }

  .captcha-input {
    width: 70px;
    padding: 12px;
    font-size: 18px;
    border-radius: 10px;
  }

  .checkbox-label {
    padding: 16px;
    gap: 10px;
    border-radius: 10px;
  }

  .checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
  }

  .checkbox-text {
    font-size: 13px;
  }

  .form-actions-modern {
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
  }

  .btn-submit-modern {
    width: 100%;
    padding: 15px 32px;
    font-size: 15px;
    border-radius: 10px;
  }

  .btn-arrow {
    font-size: 18px;
  }

  .btn-cancel-modern {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    text-align: center;
    border-radius: 10px;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .apply-title {
    font-size: 24px;
  }

  .apply-subtitle {
    font-size: 14px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .step-label {
    font-size: 9px;
  }

  .step-line {
    width: 20px;
  }

  .modern-form-card {
    padding: 20px 12px;
  }

  .form-section-title {
    font-size: 16px;
  }

  .form-input,
  .form-select {
    padding: 11px 12px;
    font-size: 14px;
  }

  .math-num {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .captcha-input {
    width: 65px;
    font-size: 16px;
  }

  .btn-submit-modern {
    padding: 14px 28px;
    font-size: 14px;
  }

  .btn-cancel-modern {
    padding: 13px 20px;
    font-size: 14px;
  }
}

/* Responsive */
/* Tablet - 1024px */
@media (max-width: 1024px) {
  /* Ana Sayfa - Application Steps Modern */
  .application-steps-modern {
    padding: 60px 0;
  }
  
  .application-steps-modern .section-head {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  
  .steps-grid-modern {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .step-arrow-modern {
    display: none;
  }
  
  .step-card-modern {
    padding: 28px 20px;
  }
  
  .step-icon-modern {
    font-size: 42px;
  }
  
  .step-title-modern {
    font-size: 18px;
  }
  
  .step-desc-modern {
    font-size: 14px;
  }
  
  .bein-packages-section .section-head {
    padding: 0 20px;
  }
  
  /* Movies Slider Tablet */
  .movies-slider-section {
    padding: 60px 0;
  }
  
  .movies-slider-section .section-head {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  
  .movies-slider-container {
    padding: 0 20px;
  }
  
  .movies-slider {
    gap: 20px;
  }
  
  .movie-card {
    flex: 0 0 calc((100% - 60px) / 4); /* 4 items on tablet, 3 gaps of 20px = 60px */
    min-width: calc((100% - 60px) / 4);
  }
  
  .movie-poster {
    height: 260px;
    border-radius: 14px;
  }
  
  .movies-slider-dots {
    gap: 10px;
  }
  
  .movies-slider-dot {
    width: 10px;
    height: 10px;
  }
  
  .movies-cta-button {
    padding: 18px 40px;
    font-size: 20px;
  }

  /* Ana Sayfa - Application Steps */
  .application-steps {
    padding: 60px 20px;
  }
  
  .steps-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto 48px;
  }
  
  .step-arrow {
    display: none;
  }
  
  .step-card {
    padding: 28px 20px;
  }
  
  .step-icon {
    font-size: 42px;
  }
  
  .step-title {
    font-size: 18px;
  }
  
  .step-desc {
    font-size: 14px;
  }
  
  /* Ana Sayfa - Paketler */
  .home-packages-section {
    padding: 60px 20px;
  }
  
  .home-packages-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .home-packages-title {
    font-size: 36px;
  }
  
  .home-packages-subtitle {
    font-size: 17px;
  }
  
  .home-packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  
  .home-package-image-wrapper {
    height: 240px;
  }
  
  .home-package-content {
    padding: 24px 20px;
  }
  
  .home-package-title {
    font-size: 22px;
  }
  
  .home-package-description {
    font-size: 15px;
  }
  
  /* Hero Banner Tablet */
  .hero-banner {
    min-height: auto;
    max-height: 350px;
    overflow: hidden;
  }
  
  .hero-banner-img {
    max-height: 350px;
  }
  
  .hero-banner-mobile {
    max-height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  /* Hero CTA Section Tablet */
  .hero-cta-section {
    padding: 40px 0;
  }
  
  .hero-cta-container {
    padding: 0 20px;
  }
  
  .hero-cta-button {
    padding: 18px 40px;
    font-size: 20px;
  }
  
  .cta-icon {
    font-size: 26px;
  }
  
  /* Floating CTA Button Tablet */
  .floating-cta-button {
    bottom: 25px;
    right: 25px;
  }
  
  .floating-cta-content {
    padding: 14px 20px;
  }
  
  .floating-cta-icon {
    font-size: 28px;
  }
  
  .floating-cta-title {
    font-size: 12px;
  }
  
  .floating-cta-subtitle {
    font-size: 16px;
  }
  
  .bein-hero-banner {
    min-height: 230px;
  }
  
  .bein-hero-img {
    max-height: 230px;
  }
  
  /* Diğer */
  .package-card { grid-column: span 12; }
  .match-grid .match-card { grid-column: span 12; }
  .bein-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    padding: 0 20px;
  }
  
  .bein-cards-grid:has(.bein-package-card:nth-child(4):last-child) {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  
  .bein-cards-grid:has(.bein-package-card:nth-child(2):last-child) {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    max-width: 100%;
    gap: 28px;
  }
  
  .bein-cards-grid:has(.bein-package-card:nth-child(3):last-child) {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 100%;
    gap: 24px;
  }
  
  .home-packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  
  .home-package-image-wrapper {
    height: 240px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }
  
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Medium breakpoint: prevent header overlap */
@media (max-width: 1280px) {
  .nav { width: 100%; justify-content: center; flex-wrap: wrap; gap: 12px; }
  .nav-link { font-size: 15px; padding: 12px 18px; }
}

@media (max-width: 768px) {
  /* beIN CONNECT Hero Banner Mobile */
  .bein-hero-banner {
    max-height: 250px;
  }
  
  .bein-hero-img {
    max-height: 250px;
    object-fit: cover;
  }

  /* beIN CONNECT Packages Mobile */
  .bein-packages-section {
    padding: 40px 0;
  }
  
  .bein-cards-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 24px;
  }
  
  .bein-cards-grid:has(.bein-package-card:nth-child(2):last-child) {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 24px;
  }
  
  .bein-cards-grid:has(.bein-package-card:nth-child(3):last-child) {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 24px;
  }
  
  .bein-cards-grid:has(.bein-package-card:nth-child(4):last-child) {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .team-section {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .team-logo {
    width: 60px;
    height: 60px;
  }
  
  .plus-icon {
    font-size: 20px;
  }
  
  .eglence-badge {
    padding: 6px 12px;
  }
  
  .badge-text {
    font-size: 12px;
  }
  
  .league-icon {
    width: 36px;
    height: 36px;
  }
  
  .league-badges {
    justify-content: center;
  }
  
  .league-row {
    gap: 8px;
  }
  
  .current-price {
    font-size: 36px;
  }
  
  .package-name {
    font-size: 20px;
  }

  /* Top Match Bar Mobile */
  .top-match-bar {
    padding: 8px 0;
  }
  .top-match-bar .match-card {
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px;
    width: 100%;
  }
  .top-match-bar .hl-teams {
    font-size: 14px;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top-match-bar .team-badge {
    width: 28px;
    height: 28px;
  }
  .top-match-bar .hl-meta {
    flex-direction: column;
    gap: 8px;
    border-left: none;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    padding-left: 0;
    padding-top: 8px;
    width: 100%;
  }
  .top-match-bar .kickoff {
    font-size: 13px;
    padding: 4px 10px;
  }
  .top-match-bar .countdown {
    gap: 6px;
    width: 100%;
    justify-content: center;
  }
  .top-match-bar .time-box {
    min-width: 45px;
    padding: 5px 8px;
  }
  .top-match-bar .time-box .num {
    font-size: 16px;
  }
  .top-match-bar .time-box .lbl {
    font-size: 8px;
  }
  .btn-compact-cta {
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
  }
  .btn-nav-apply {
    width: calc(100% - 80px);
    padding: 20px 24px;
    font-size: 18px;
    margin: 20px 40px;
    border-radius: 12px;
  }

  .header-inner { flex-direction: row; gap: 0; padding: 12px 0; min-height: 80px; }
  .mobile-menu-toggle { display: flex !important; }
  
  /* Show mobile menu header only on mobile */
  .mobile-menu-header { display: flex !important; }
  
  .nav { 
    position: fixed !important; 
    top: 0 !important; 
    left: 0 !important; 
    right: 0 !important; 
    bottom: 0 !important; 
    background: linear-gradient(135deg, 
      rgba(15, 23, 42, 0.98) 0%, 
      rgba(30, 41, 59, 0.98) 25%,
      rgba(51, 65, 85, 0.98) 50%,
      rgba(71, 85, 105, 0.98) 75%,
      rgba(100, 116, 139, 0.98) 100%
    ) !important; 
    backdrop-filter: blur(25px) !important;
    flex-direction: column !important; 
    justify-content: flex-start !important; 
    align-items: stretch !important; 
    gap: 0 !important; 
    transform: translateX(-100%) !important; 
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    z-index: 9999 !important;
    padding: 0 !important;
    display: flex !important;
    overflow-y: auto !important;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5) !important;
    width: 100% !important;
    height: 100vh !important;
  }
  .nav.mobile-open { 
    transform: translateX(0) !important; 
    backdrop-filter: blur(25px) saturate(1.2) !important;
  }
  
  /* Mobile menu header with logo */
  .mobile-menu-header {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, 
      #ffffff 0%, 
      #f8fafc 25%, 
      #f1f5f9 50%, 
      #e2e8f0 75%, 
      #cbd5e1 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(124, 58, 237, 0.2);
  }
  
  .mobile-menu-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(124,58,237,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(124,58,237,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(124,58,237,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
  }
  
  .mobile-brand-logo {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(124, 58, 237, 0.3));
    z-index: 2;
    position: relative;
  }
  
  .mobile-brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    position: relative;
  }
  
  .mobile-brand-name {
    font-size: 42px;
    font-weight: 900;
    color: #dc2626;
    line-height: 1;
    text-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    letter-spacing: -1px;
  }
  
  .mobile-brand-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    margin-top: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
  }
  
  .nav-link { 
    padding: 24px 40px; 
    font-size: 24px; 
    font-weight: 700;
    width: 100%; 
    text-align: center; 
    border-radius: 0; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
  }
  
  .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 3px 3px 0;
  }
  
  .nav-link:hover:not(.nav-dropdown-toggle) { 
    background: rgba(124, 58, 237, 0.2); 
    color: #ffffff;
    transform: translateX(16px);
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    font-weight: 800;
  }
  
  .nav-dropdown-toggle:hover {
    background: rgba(124, 58, 237, 0.2); 
    color: #ffffff;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
  }
  
  .nav-link:hover:not(.nav-dropdown-toggle)::before {
    transform: scaleY(1);
  }
  
  .nav-link.is-active { 
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(37, 99, 235, 0.3)); 
    color: #ffffff; 
    font-weight: 800;
    box-shadow: inset 0 0 30px rgba(124, 58, 237, 0.4);
    border-left: 6px solid #7c3aed;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  }
  
  .nav-item { width: 100%; }
  .nav-dropdown { 
    position: static; 
    display: none; 
    background: rgba(15, 23, 42, 0.6); 
    border: none; 
    border-radius: 0; 
    margin: 0; 
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3); 
    padding: 0;
    animation: slideDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
  }
  .nav-item.open .nav-dropdown { display: block; }
  .dropdown-link { 
    padding: 22px 40px 22px 80px; 
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.3px;
  }
  
  .dropdown-link::before {
    content: '▶';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: rgba(124, 58, 237, 0.7);
    transition: all 0.3s ease;
    font-weight: bold;
  }
  
  .dropdown-link:hover { 
    background: rgba(124, 58, 237, 0.15); 
    color: #ffffff;
    transform: translateX(12px);
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    font-weight: 700;
  }
  
  .dropdown-link:hover::before {
    color: #7c3aed;
    transform: translateY(-50%) translateX(6px);
    font-size: 18px;
  }
  
  @keyframes slideDown {
    from { 
      opacity: 0; 
      transform: translateY(-20px); 
      filter: blur(5px);
    }
    to { 
      opacity: 1; 
      transform: translateY(0); 
      filter: blur(0);
    }
  }
  
  /* Reset desktop nav styles for mobile */
  .nav-link::before { display: none; }
  .nav-link { border: none !important; box-shadow: none !important; }
  .dropdown-link::before { content: '▶' !important; left: 40px !important; opacity: 1 !important; }
  
  /* Match Banner Mobile */
  .match-banner {
    padding: 16px 0;
  }
  .match-banner-content {
    flex-direction: column;
    gap: 16px;
  }
  .match-banner .header-live {
    width: 100%;
  }
  .btn-opportunity {
    width: 100%;
    padding: 14px 24px;
    font-size: 18px;
  }
  
  /* Application Steps Mobile - Modern */
  .application-steps-modern {
    padding: 40px 0;
  }
  
  .application-steps-modern .section-head {
    padding: 0 16px;
    margin-bottom: 32px;
  }
  
  .steps-grid-modern {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
    padding: 0 16px;
  }
  
  .step-arrow-modern {
    display: none;
  }
  
  .step-card-modern {
    padding: 24px 16px;
    border-radius: 16px;
  }
  
  .step-number-modern {
    width: 36px;
    height: 36px;
    font-size: 18px;
    top: -14px;
    left: 16px;
  }
  
  .step-icon-modern {
    font-size: 36px;
    margin-bottom: 12px;
  }
  
  .step-title-modern {
    font-size: 17px;
    margin-bottom: 10px;
  }
  
  .step-desc-modern {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .bein-packages-section .section-head {
    padding: 0 16px;
    margin-bottom: 28px;
  }
  
  /* Movies Slider Mobile */
  .movies-slider-section {
    padding: 40px 0;
  }
  
  .movies-slider-section .section-head {
    padding: 0 16px;
    margin-bottom: 32px;
  }
  
  .movies-slider-container {
    padding: 0 16px;
    margin-bottom: 30px;
  }
  
  .movies-slider {
    gap: 16px;
  }
  
  .movie-card {
    flex: 0 0 calc((100% - 16px) / 2); /* 2 items on mobile, 1 gap of 16px */
    min-width: calc((100% - 16px) / 2);
  }
  
  .movie-poster {
    height: 220px;
    border-radius: 12px;
  }
  
  .movies-slider-bg {
    opacity: 0.08;
    background-size: 120px auto;
  }
  
  .movies-slider-dots {
    gap: 8px;
    margin-top: 20px;
  }
  
  .movies-slider-dot {
    width: 8px;
    height: 8px;
  }
  
  .movies-cta {
    padding: 0 16px;
  }
  
  .movies-cta-button {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    justify-content: center;
  }
  
  .movies-cta-icon {
    font-size: 24px;
  }

  /* Application Steps Mobile */
  .application-steps {
    padding: 40px 16px;
  }
  
  .steps-title {
    font-size: 26px;
    margin-bottom: 32px;
    line-height: 1.3;
    padding: 0 10px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
  }
  
  .step-arrow {
    display: none;
  }
  
  .step-card {
    padding: 24px 16px;
    border-radius: 16px;
  }
  
  .step-number {
    width: 36px;
    height: 36px;
    font-size: 18px;
    top: -14px;
    left: 16px;
  }
  
  .step-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }
  
  .step-title {
    font-size: 17px;
    margin-bottom: 10px;
  }
  
  .step-desc {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .btn-steps-start {
    width: 100%;
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 12px;
  }
  
  .hero .container { padding: 24px 0; }
  .package-hero { height: 160px; }
  .form-row { grid-template-columns: 1fr; }
  .brand-logo { 
    height: clamp(28px, 7vw, 38px); 
    max-width: 160px;
  }
  .brand-name { font-size: 24px; }
  .brand-subtitle { font-size: 11px; }
  
  .footer-content {
    grid-template-columns: 1fr;
    padding: 30px 16px;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-logo {
    height: 50px;
    max-width: 150px;
  }
  
  .footer-brand-name {
    font-size: 24px;
  }
  
  .footer-disclaimer {
    font-size: 11px;
    padding: 12px 16px;
    margin-bottom: 12px;
    line-height: 1.6;
  }
  
  /* Mobile: Hide desktop app store, show mobile app store */
  .app-store-desktop {
    display: none;
  }
  
  .app-store-mobile {
    display: flex;
    margin: 16px 0;
  }
  
  .app-store-badge {
    height: 35px;
  }
  
  .legal-container {
    padding: 0 20px;
  }
  
  .legal-title {
    font-size: 24px;
  }
  
  .legal-subtitle {
    font-size: 18px;
  }
  
  .legal-intro,
  .legal-section p,
  .legal-list li {
    font-size: 14px;
  }
  
  /* Ana Sayfa - Paketler Mobile */
  .home-packages-section {
    padding: 40px 0;
  }
  
  .home-packages-container {
    padding: 0 16px;
  }
  
  .section-head {
    margin-bottom: 28px;
  }
  
  .home-packages-title {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .home-packages-subtitle {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .home-packages-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .home-package-card {
    border-radius: 16px;
    overflow: hidden;
  }
  
  .home-package-image-wrapper {
    height: 200px;
  }
  
  .home-package-image {
    border-radius: 0;
  }
  
  .home-package-content {
    padding: 20px 16px;
  }
  
  .home-package-title {
    font-size: 19px;
    margin-bottom: 10px;
  }
  
  .home-package-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .home-package-btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 10px;
  }
  
  /* Hero Banner Mobile */
  .hero-banner {
    min-height: auto;
    max-height: 400px;
    overflow: hidden;
  }
  
  .hero-banner-img {
    max-height: none;
    object-fit: contain;
  }
  
  /* Show mobile banner, hide desktop banner */
  .hero-banner-mobile {
    display: block !important;
    max-height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .hero-banner-desktop {
    display: none !important;
  }
  
  /* Hero CTA Section Mobile */
  .hero-cta-section {
    padding: 30px 0;
  }
  
  .hero-cta-container {
    padding: 0 16px;
  }
  
  .hero-cta-button {
    padding: 16px 36px;
    font-size: 18px;
    gap: 10px;
    border-width: 2px;
  }
  
  .cta-icon {
    font-size: 24px;
  }
  
  .cta-text {
    font-size: 16px;
  }
  
  /* Floating CTA Button Mobile */
  .floating-cta-button {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-cta-content {
    padding: 12px 18px;
    gap: 10px;
  }
  
  .floating-cta-icon {
    font-size: 26px;
  }
  
  .floating-cta-title {
    font-size: 11px;
  }
  
  .floating-cta-subtitle {
    font-size: 15px;
  }
  
  .bein-hero-banner {
    min-height: 180px;
  }
  
  .bein-hero-img {
    max-height: 180px;
    object-fit: cover;
  }
  
  /* Container Mobile */
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  /* Top Match Bar Mobile */
  .top-match-container {
    padding: 0 16px;
  }
  
  /* Maç Kartları Mobile */
  .match-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .match-card {
    padding: 16px;
  }
}

/* ========================================
   APPLICATION FORM - 3 STEPS
========================================  */

/* Step 1: Package Selection */
.package-selection-section {
  background: #f5f5f5;
  min-height: calc(100vh - 120px);
  padding: 60px 0;
}

.package-selection-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.selection-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.selection-help {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #6366f1;
  font-size: 14px;
  cursor: pointer;
}

.selection-help svg {
  width: 20px;
  height: 20px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.package-option {
  cursor: pointer;
}

.package-option input[type="radio"] {
  display: none;
}

.package-card-select {
  background: white;
  border: 3px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.package-option input[type="radio"]:checked + .package-card-select {
  border-color: #6366f1;
  background: #f0f0ff;
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.package-logo-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.package-card-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.35;
  min-height: 38px;
}

.package-card-price {
  font-size: 20px;
  font-weight: 800;
  color: #6366f1;
}

.selection-footer {
  text-align: center;
}

.btn-continue,
.btn-submit-application {
  background: #2d1654;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 16px 80px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-continue:hover,
.btn-submit-application:hover {
  background: #1a0e35;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 22, 84, 0.3);
}

.btn-back,
.btn-change {
  background: transparent;
  color: #6366f1;
  border: 2px solid #6366f1;
  border-radius: 8px;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin-top: 20px;
}

.btn-back:hover,
.btn-change:hover {
  background: #6366f1;
  color: white;
}

/* Step 2: Payment Type Selection */
.payment-selection-section {
  background: #f5f5f5;
  min-height: calc(100vh - 120px);
  padding: 60px 0;
}

.payment-selection-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.payment-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.payment-option {
  cursor: pointer;
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-card {
  background: white;
  border: 3px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: left;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.payment-option input[type="radio"]:checked + .payment-card {
  border-color: #6366f1;
  background: #f0f0ff;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.payment-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #ff4757;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.payment-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.payment-price {
  margin-bottom: 12px;
}

.price-amount {
  font-size: 36px;
  font-weight: 700;
  color: #6366f1;
}

.price-period {
  font-size: 18px;
  color: #6b7280;
  margin-left: 4px;
}

.payment-installment {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.payment-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
}

.btn-select-payment {
  background: #2d1654;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
}

.payment-option input[type="radio"]:checked + .payment-card .btn-select-payment {
  background: #6366f1;
}

.btn-select-payment:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Step 3: Application Form */
.application-form-section {
  background: #f5f5f5;
  min-height: calc(100vh - 120px);
  padding: 60px 0;
}

.application-form-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.form-info-box {
  background: white;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-info-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.form-info-installment {
  font-size: 16px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 12px;
}

.form-info-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.application-form {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-grid-application {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

/* Tüm form input'ları için sabit beyaz arka plan ve siyah yazı */
.form-grid-application input[type="text"],
.form-grid-application input[type="tel"],
.form-grid-application input[type="date"],
.form-grid-application select {
  background: #ffffff !important;
  color: #000000 !important;
  border: 2px solid #e5e7eb;
  transition: none;
}

.form-grid-application input[type="text"]:focus,
.form-grid-application input[type="tel"]:focus,
.form-grid-application input[type="date"]:focus,
.form-grid-application select:focus,
.form-grid-application input[type="text"]:hover,
.form-grid-application input[type="tel"]:hover,
.form-grid-application input[type="date"]:hover,
.form-grid-application select:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #e5e7eb;
  outline: none;
  box-shadow: none;
}

/* Date input özel stiller */
.form-grid-application input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
}

.form-grid-application input[type="date"]::-webkit-datetime-edit {
  color: #000000;
}

.form-grid-application input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  color: #000000;
}

.form-grid-application input[type="date"]::-webkit-datetime-edit-text {
  color: #000000;
}

.form-grid-application input[type="date"]::-webkit-datetime-edit-month-field,
.form-grid-application input[type="date"]::-webkit-datetime-edit-day-field,
.form-grid-application input[type="date"]::-webkit-datetime-edit-year-field {
  color: #000000;
}

/* Placeholder renkleri */
.form-grid-application input::placeholder {
  color: #666666;
  opacity: 1;
}

.form-grid-application input::-webkit-input-placeholder {
  color: #666666;
}

.form-grid-application input::-moz-placeholder {
  color: #666666;
}

.form-grid-application input:-ms-input-placeholder {
  color: #666666;
}

/* Autofill durumunda bile beyaz arka plan */
.form-grid-application input:-webkit-autofill,
.form-grid-application input:-webkit-autofill:hover,
.form-grid-application input:-webkit-autofill:focus,
.form-grid-application input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: #000000 !important;
  transition: background-color 5000s ease-in-out 0s;
  background-color: #ffffff !important;
  color: #000000 !important;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.form-input {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  transition: none;
  width: 100%;
  background: #ffffff;
  color: #000000;
}

.form-input:focus {
  outline: none;
  border-color: #e5e7eb;
  box-shadow: none;
  background: #ffffff;
  color: #000000;
}

.form-input:hover {
  background: #ffffff;
  border-color: #e5e7eb;
  color: #000000;
}

.phone-input-wrapper {
  display: flex;
  gap: 12px;
}

.phone-country-code {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  width: 100px;
  flex-shrink: 0;
  background: #ffffff;
  color: #000000;
  transition: none;
}

.phone-country-code:focus,
.phone-country-code:hover {
  background: #ffffff;
  color: #000000;
  border-color: #e5e7eb;
  outline: none;
  box-shadow: none;
}

.phone-number {
  flex: 1;
  background: #ffffff;
  color: #000000;
}

.phone-number:focus,
.phone-number:hover {
  background: #ffffff;
  color: #000000;
  border-color: #e5e7eb;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
}

.checkbox-container input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 4px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark {
  background: #6366f1;
  border-color: #6366f1;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark:after {
  content: '✓';
  color: white;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkbox-text {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

.checkbox-text a {
  color: #6366f1;
  text-decoration: underline;
}

.form-actions-application {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* How To Modal */
.how-to-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.how-to-modal-content {
  background: white;
  border-radius: 20px;
  max-width: 450px;
  width: 100%;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.how-to-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #6b7280;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.how-to-modal-close:hover {
  color: #1a1a1a;
  transform: rotate(90deg);
}

.how-to-modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.how-to-logo {
  height: 50px;
  width: auto;
}

.how-to-steps {
  margin-bottom: 30px;
}

.how-to-step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

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

.how-to-step-number {
  background: #6366f1;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.how-to-step-text {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.6;
  margin: 0;
  padding-top: 6px;
}

.how-to-modal-footer {
  text-align: center;
}

.btn-modal-continue {
  background: #6366f1;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
}

.btn-modal-continue:hover {
  background: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

/* Responsive - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .package-card-select {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    padding: 16px 20px !important;
    min-height: auto !important;
  }
  
  .package-logo-wrapper {
    margin-bottom: 0 !important;
    width: 65px !important;
    height: 65px !important;
  }
  
  .package-card-name {
    text-align: left !important;
    flex-grow: 1;
    min-height: auto !important;
    font-size: 16px !important;
    line-height: 1.3 !important;
    font-weight: 600;
  }
  
  .package-card-price {
    flex-shrink: 0;
    margin-top: 0 !important;
    font-weight: 900 !important;
    font-size: 22px !important;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .package-selection-section,
  .payment-selection-section,
  .application-form-section {
    padding: 10px 0 14px 0;
  }

  .selection-title {
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .selection-header {
    margin-bottom: 10px;
  }
  
  .selection-help {
    font-size: 11px;
    margin-top: 0;
  }
  
  .selection-help svg {
    width: 14px;
    height: 14px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 12px;
  }
  
  /* Tüm paketleri yatay (horizontal) layout yap */
  .package-card-select {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    padding: 10px 14px !important;
    min-height: auto !important;
  }
  
  .package-logo-wrapper {
    margin-bottom: 0 !important;
    flex-shrink: 0;
    width: 48px !important;
    height: 48px !important;
  }
  
  .package-card-name {
    text-align: left !important;
    flex-grow: 1;
    min-height: auto !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
    font-weight: 600;
  }
  
  .package-card-price {
    flex-shrink: 0;
    margin-top: 0 !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    white-space: nowrap;
  }
  
  .how-to-modal-content {
    padding: 30px 20px;
    max-width: 90%;
  }
  
  .how-to-logo {
    height: 40px;
  }
  
  .how-to-step-number {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  
  .how-to-step-text {
    font-size: 13px;
  }
  
  .package-selection-container,
  .payment-selection-container,
  .application-form-container {
    padding: 0 10px;
  }
  
  .selection-footer {
    margin-top: 6px;
  }
  
  .btn-continue,
  .btn-submit-application {
    padding: 12px 32px;
    width: 100%;
    font-size: 15px;
  }

  .payment-options-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .payment-card {
    padding: 32px 24px;
  }

  .payment-title {
    font-size: 20px;
  }

  .price-amount {
    font-size: 28px;
  }

  .form-info-box {
    padding: 24px;
  }

  .form-info-title {
    font-size: 18px;
  }

  .application-form {
    padding: 24px;
  }

  .form-grid-application {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .btn-continue,
  .btn-submit-application {
    padding: 12px 32px;
    width: 100%;
    font-size: 15px;
  }
}

