/* modern-sporty.css - Clean, Sporty, Modern Theme */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Barlow:wght@400;500;600;700&display=swap');
@import url('light-mode.css');

:root {
  --bg: #000000;
  --surface: #0a0a0a;
  --surface-alt: #121212;
  --primary: #ccff00; /* Volt Green */
  --primary-rgb: 204, 255, 0;
  --primary-hover: #b3e600;
  --text: #ffffff;
  --text-muted: #888888;
  --border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(0, 0, 0, 0.7);
  --font-header: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 0px; /* Sharp sporty look or very slightly rounded */
  --radius-lg: 4px;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, .sporty-header {
  font-family: var(--font-header);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.text-primary { color: var(--primary); }
.text-outline {
  -webkit-text-stroke: 1px var(--text);
  color: transparent;
}

/* Navbar */
.nav-sporty {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

.nav-sporty.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  height: 70px;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-sporty {
  font-family: var(--font-header);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-sporty span { color: var(--primary); }

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link-sporty {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  opacity: 0.7;
  transition: 0.3s;
}

.nav-link-sporty:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hamburger-btn {
  display: none;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
}

.nav-link-sporty.active {
  color: var(--primary);
  opacity: 1;
}

.nav-link-sporty:focus-visible,
.btn-sporty:focus-visible,
.hamburger-btn:focus-visible {
  outline: 3px solid rgba(204, 255, 0, 0.7);
  outline-offset: 3px;
}

/* Buttons */
.btn-sporty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-header);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  border: none;
  position: relative;
  overflow: hidden;
  min-width: 130px;
}

.btn-primary-sporty {
  background: var(--primary);
  color: #000;
}

.btn-primary-sporty:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn-outline-sporty {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline-sporty:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-sporty {
    height: auto;
    padding: 1rem 0;
  }

  .nav-container {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }

  .logo-sporty {
    flex: 0 1 auto;
    justify-content: flex-start;
  }

  .nav-links {
    flex: 1 1 100%;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .nav-actions {
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 0.85rem;
  }

  .btn-sporty {
    min-width: 0;
    width: auto;
    padding: 0.75rem 1.1rem;
  }

  .nav-link-sporty {
    white-space: nowrap;
    font-size: 0.95rem;
  }
  
  .mobile-menu-buttons {
    display: flex;
    flex-direction: column-reverse; /* Put buttons at top, profile at bottom */
  }
  /* hide header links and header action buttons on small screens; show hamburger */
  .nav-links {
    display: none;
  }

  .nav-actions > .btn-sporty {
    display: none;
  }

  .hamburger-btn {
    display: inline-flex;
  }
}

/* Mobile menu styles for sporty theme */
.nav-profile-dropdown {
  display: flex !important;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.nav-profile-dropdown img {
  border-radius: 50%;
  border: 2px solid var(--primary);
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  max-width: 100%;
  background: var(--surface);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.2, 0, 0, 1);
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  gap: 1rem;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu .mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu .mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  padding: 0.75rem 0.25rem;
  border-radius: 6px;
}
.mobile-menu a:hover { background: rgba(0,0,0,0.04); }
.mobile-menu .mobile-menu-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-overlay {
    display: none;
  }
}

/* Hero Section */
.hero-sporty {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--bg);
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  z-index: 1;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-bg-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) brightness(0.8);
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-bg-media img.active {
  opacity: 1;
}

.hero-bg-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.hero-content-sporty {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: -2rem;
}

.hero-title-sporty {
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  margin-bottom: 2rem;
}

.hero-subtitle-sporty {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 4rem;
  margin-top: 4rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-header);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
}

.stat-label {
  font-family: var(--font-header);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* Sections */
.section-sporty {
  padding: 100px 0;
  position: relative;
}

.section-title-wrap {
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
}

.section-title-sporty {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
}

/* Cards */
/* Autoscroll Showcase */
.scroller-sporty {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
  position: relative;
  perspective: 2000px;
}

/* Gradient Overlays for the "Disappearing" effect */
.scroller-sporty::before,
.scroller-sporty::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 25%;
  z-index: 20;
  pointer-events: none;
}

.scroller-sporty::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.scroller-sporty::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.scroller-track-sporty {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: scrollSporty 60s linear infinite;
  transform-style: preserve-3d;
}


/* Removed: animation-play-state: paused; to keep scroller moving on hover */
.scroller-track-sporty:hover {
  animation-play-state: running; 
}

@keyframes scrollSporty {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.scroller-card-sporty {
  width: 340px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.1s linear, border-color 0.3s ease; /* Fast transform transition for smooth JS updates */
  cursor: pointer;
  position: relative;
  transform-style: preserve-3d;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.scroller-card-sporty:hover {
  border-color: transparent;
  z-index: 100;
}

/* Traveling Lines Animation */
.scroller-card-sporty::before,
.scroller-card-sporty::after {
  content: '';
  position: absolute;
  z-index: 10;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  width: 0;
  height: 0;
}

/* Corner 1: Top-Left - grows Right and Down */
.scroller-card-sporty::before {
  top: -2px;
  left: -2px;
  border-top: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  box-shadow: -5px -5px 15px rgba(var(--primary-rgb), 0.3);
}

/* Corner 2: Bottom-Right - grows Left and Up */
.scroller-card-sporty::after {
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  box-shadow: 5px 5px 15px rgba(var(--primary-rgb), 0.3);
}

.scroller-card-sporty:hover::before,
.scroller-card-sporty:hover::after {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  opacity: 1;
}


.scroller-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #000;
  position: relative;
}

.scroller-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.scroller-card-sporty:hover .scroller-img-wrap img {
  transform: scale(1.05);
}

.scroller-info {
  padding: 1.5rem;
  text-align: center;
}

.scroller-name {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.scroller-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}


/* Rotating Testimonials */
.testimonials-sporty-wrap {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  overflow: hidden;
}

.testi-card-sporty {
  position: absolute;
  width: 100%;
  max-width: 600px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem 3rem;
  text-align: center;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  pointer-events: none;
  transform: translateZ(-400px) scale(0.8);
}

.testi-card-sporty.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateZ(0) scale(1);
  z-index: 10;
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.testi-card-sporty.prev {
  opacity: 0.4;
  transform: translateX(-300px) translateZ(-200px) rotateY(25deg);
  filter: blur(2px) grayscale(0.8);
  z-index: 5;
}

.testi-card-sporty.next {
  opacity: 0.4;
  transform: translateX(300px) translateZ(-200px) rotateY(-25deg);
  filter: blur(2px) grayscale(0.8);
  z-index: 5;
}

.testi-quote-icon {
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  transition: all 0.5s ease;
}

.testi-card-sporty.active .testi-quote-icon {
  opacity: 0.3;
  transform: scale(1.1);
}

.testi-avatar-sporty img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testi-quote-sporty {
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 2rem;
  color: #fff;
  line-height: 1.6;
}

.testi-user-sporty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.testi-avatar-sporty {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.testi-avatar-sporty img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-name-sporty {
  font-family: var(--font-header);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testi-role-sporty {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Sports Grid & Cards */
.sports-grid-sporty {
  display: grid;
  grid-template-cols: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.sport-card-sporty {
  position: relative;
  height: 450px;
  overflow: hidden;
  background: #050505;
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sport-card-sporty img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), filter 0.8s ease;
  filter: brightness(0.65);
  z-index: 1;
}

.sport-card-sporty:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.sport-card-sporty:hover img {
  transform: scale(1.1);
  filter: brightness(0.9);
}

.sport-card-overlay {
  position: relative;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  z-index: 2;
  transition: all 0.3s ease;
}

.sport-card-overlay h3 {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #fff;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.sport-card-overlay span {
  font-family: var(--font-header);
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
  opacity: 0.8;
}

.sport-card-sporty:hover .sport-card-overlay h3 {
  color: var(--primary);
}

/* Features */
.features-sporty {
  background: var(--surface);
}

.feature-row-sporty {
  display: grid;
  grid-template-cols: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 100px;
}

.feature-row-sporty:nth-child(even) {
  direction: rtl;
}

.feature-row-sporty:nth-child(even) .feature-text-sporty {
  direction: ltr;
}

/* Feature Fade Row (Hero-style) */
.feature-fade-row {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  margin-bottom: 120px !important;
  background: var(--bg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.feature-fade-row .feature-img-sporty {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  background: #000;
}

.feature-fade-row .feature-img-sporty img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) brightness(0.7);
  transition: filter 0.5s ease;
}

.feature-fade-row:hover .feature-img-sporty img {
  filter: grayscale(0) brightness(0.8);
}

.feature-fade-row .feature-img-sporty::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
  z-index: 2;
}

.feature-fade-row .feature-text-sporty {
  position: relative;
  z-index: 10;
  max-width: 650px;
  padding: 4rem;
  margin-left: 0;
}

/* Alternate Side for Even Rows */
.feature-fade-row:nth-child(even) {
  justify-content: flex-end;
}

.feature-fade-row:nth-child(even) .feature-img-sporty {
  right: auto;
  left: 0;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}

.feature-fade-row:nth-child(even) .feature-img-sporty::after {
  background: linear-gradient(-90deg, var(--bg) 0%, transparent 100%);
}

.feature-fade-row:nth-child(even) .feature-text-sporty {
  padding-right: 4rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.feature-img-sporty {
  background: #111;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
}

.feature-img-sporty img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Premium Footer */
.footer-sporty {
  padding: 100px 0 50px;
  background: #050505;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.footer-top-sporty {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 80px;
}

.footer-brand-side {
  flex: 2;
  min-width: 300px;
}

.footer-col {
  flex: 1;
  min-width: 150px;
}


.footer-logo {
  font-family: var(--font-header);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text);
  text-decoration: none;
  display: block;
}

.footer-logo span { color: var(--primary); }

.footer-socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-icon-sporty {
  width: 45px;
  height: 45px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
}

.social-icon-sporty:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

.footer-heading-sporty {
  font-family: var(--font-header);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--text);
  letter-spacing: 0.1em;
  font-weight: 800;
}

.footer-links-sporty {
  list-style: none;
}

.footer-link-item {
  margin-bottom: 1rem;
}

.footer-link-sporty {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
  display: inline-block;
}

.footer-link-sporty:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-bottom-sporty {
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Payment Methods & Trust Badges Section */
.footer-trust-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.payment-methods,
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.payment-methods h5,
.trust-badges h5 {
  font-family: var(--font-header);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.payment-logos {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  min-height: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.payment-logo:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(var(--primary-rgb), 0.2);
}

.payment-logo img {
  max-height: 35px;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.payment-logo:hover img {
  filter: brightness(1.2);
}

/* Phone Showcase Realistic Mockup */
.phone-showcase-sporty {
  overflow: hidden;
  background: radial-gradient(circle at 70% 50%, rgba(var(--primary-rgb), 0.05) 0%, transparent 50%);
  padding-top: 40px !important;
  padding-bottom: 20px !important;
}

.phone-showcase-sporty .feature-row-sporty {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center;
  gap: 4rem;
  width: 100%;
  margin-bottom: 0 !important;
}

.phone-showcase-sporty .feature-text-sporty {
  flex: 1;
  max-width: 550px;
}

.app-badges-sporty {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.app-badge img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.app-badge:hover img {
  transform: translateY(-5px);
  filter: drop-shadow(0 10px 20px rgba(var(--primary-rgb), 0.2));
}

.app-features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.app-feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.feature-icon-circle {
  width: 50px;
  height: 50px;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
}

.feature-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.feature-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.phone-mockup-container {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 4rem 2rem;
  perspective: 1000px;
}

.phone-glow-bg {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
  z-index: 1;
  border-radius: 50%;
}

.iphone-x {
  position: relative;
  width: 300px;
  height: 610px;
  background: #222;
  border-radius: 40px;
  border: 12px solid #1a1a1a;
  box-shadow: 0 50px 100px rgba(0,0,0,0.8);
  z-index: 2;
  overflow: hidden;
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}

.iphone-x:hover {
  transform: rotateY(-5deg) rotateX(2deg) scale(1.02);
}

.iphone-x .screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

.app-ui-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.app-ui-overlay {
  position: absolute;
  inset: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  z-index: 3;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}

.status-icons {
  display: flex;
  gap: 6px;
}

.app-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.app-logo-small {
  font-family: var(--font-header);
  font-size: 1.2rem;
  font-weight: 900;
}

.app-logo-small span { color: var(--primary); }

.app-user-avatar {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 50%;
}

.app-content-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 2rem;
}

.content-card-mini {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.mini-graph {
  height: 60px;
  background: linear-gradient(90deg, transparent 0%, rgba(var(--primary-rgb), 0.2) 50%, transparent 100%);
  margin-bottom: 1rem;
}

.mini-stats .line {
  height: 6px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 6px;
  width: 80%;
}

.mini-stats .line.short { width: 50%; }

/* Floating UI Cards */
.floating-ui-card {
  position: absolute;
  background: rgba(20,20,20,0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  animation: floatUI 4s ease-in-out infinite;
}

.f-icon {
  color: var(--primary);
  font-size: 1.2rem;
}

.f-text {
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
}

.f-card-1 {
  top: 15%;
  right: -20px;
  animation-delay: 0s;
}

.f-card-2 {
  bottom: 20%;
  right: 220px; /* Positioned relative to the right-aligned phone */
  animation-delay: 2s;
}

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

@media (max-width: 992px) {
  .phone-showcase-sporty .feature-row-sporty {
    flex-direction: column !important;
    text-align: center;
    gap: 3rem;
  }
  
  .phone-showcase-sporty .feature-text-sporty {
    max-width: 100%;
  }

  .phone-mockup-container {
    justify-content: center;
    margin-top: 2rem;
    padding: 2rem 0;
  }

  .f-card-1 {
    right: 20px;
  }
  
  .f-card-2 {
    left: 20px;
    right: auto;
  }
}

.trust-badges-list {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  text-align: center;
}

.trust-badge:hover {
  background: rgba(var(--primary-rgb), 0.1);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(var(--primary-rgb), 0.15);
}

.trust-badge i {
  font-size: 1.5rem;
  color: var(--primary);
}

.trust-badge span {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 25%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text {
  height: 1rem;
  margin-bottom: 0.5rem;
  width: 100%;
}

.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.skeleton-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.skeleton-tier {
  height: 300px;
  width: 100%;
}

.skeleton-subscriber {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 992px) {
  .footer-brand-side {
    flex: 100%;
    margin-bottom: 2rem;
  }
  
  .footer-trust-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-top-sporty {
    flex-direction: column;
    gap: 3rem;
  }
  .footer-bottom-sporty {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-trust-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }
  
  .payment-logos,
  .trust-badges-list {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-sporty {
    padding: 100px 1.5rem;
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }

  .hero-bg-media {
    width: 100%;
    clip-path: none;
    opacity: 0.3;
  }

  .hero-bg-media::after {
    background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
  }

  .hero-content-sporty {
    max-width: 100%;
    padding: 0;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
}
