/*
Theme Name:  Sportzfy
Theme URI:   https://www.sportzfy.com/
Author:      Sportzfy Team
Author URI:  https://www.sportzfy.com/
Description: A free live sports streaming landing page theme for Sportzfy APK.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sportzfy
Tags:        one-page, sports, landing-page
*/

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  --brand-blue:      #1C7CE0;
  --brand-teal:      #16C79A;
  --brand-gradient:  linear-gradient(135deg, #1C7CE0 0%, #16C79A 100%);
  --navy-900:        #0A1B2B;
  --navy-800:        #0F2940;
  --navy-700:        #163753;
  --bg-soft:         #F4F9FB;
  --text-900:        #10202F;
  --text-600:        #52697C;
  --text-400:        #90A4B4;
  --amber:           #FFB23E;
  --radius-lg:       1.25rem;
  --radius-pill:     50rem;
}

/* ============================================================
   2. BASE / RESET
   ============================================================ */
* { -webkit-font-smoothing: antialiased; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-900);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display-font {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: var(--text-900);
  letter-spacing: -0.01em;
}

img{
  max-width: 100%;
  height: auto;
}

a { text-decoration: none; }

/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.text-muted-soft   { color: var(--text-600); }

.text-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--brand-blue);
  -webkit-text-fill-color: transparent;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: rgba(28, 124, 224, .08);
  padding: .4rem .9rem;
  border-radius: var(--radius-pill);
}

.section-eyebrow.light {
  color: #BFEFE0;
  background: rgba(255, 255, 255, .08);
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn-brand {
  background: var(--brand-gradient);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: .85rem 1.75rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 14px 28px -10px rgba(22, 199, 154, .45);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -10px rgba(22, 199, 154, .55);
  color: #fff;
  filter: brightness(1.04);
}

.btn-outline-brand {
  border: 1.5px solid #D7E4EC;
  color: var(--text-900);
  font-weight: 700;
  padding: .85rem 1.6rem;
  border-radius: var(--radius-pill);
  background: #fff;
  transition: border-color .2s ease, color .2s ease;
}
.btn-outline-brand:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.btn-light-pill {
  background: #fff;
  color: var(--navy-900);
  font-weight: 800;
  padding: .9rem 2rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 30px -12px rgba(0, 0, 0, .35);
}
.btn-light-pill:hover { color: var(--navy-900); transform: translateY(-2px); }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 2px;
}

/* ============================================================
   5. NAVBAR
   ============================================================ */
.navbar-sportzfy {
    background: #020b33;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(16, 32, 47, .06);
    padding-top: .85rem;
    padding-bottom: .85rem;
}

.navbar-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: .7rem;
  background: var(--brand-gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.navbar-brand-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-900);
}

.nav-link-sportzfy {
    font-weight: bold;
    color: #ffffff;
    margin: 0 .6rem;
    font-size: 20px;
}
.nav-link-sportzfy:hover { color: var(--brand-blue); }


.navbar-toggler{
    background: #ffffff;
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  padding: 6.5rem 0 4rem;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  top: -10%;
  right: -15%;
  width: 60vw;
  max-width: 780px;
  aspect-ratio: 1/1;
  background: var(--brand-gradient);
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  filter: blur(10px);
  opacity: .18;
  z-index: 0;
}

.hero-eyebrow-icon { font-size: 1rem; }

.hero-title {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  margin: 1rem 0 1.1rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-600);
  max-width: 540px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .92rem;
  color: var(--text-900);
}
.trust-item i { color: var(--brand-teal); font-size: 1.1rem; }

.sports-tag-row {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid #E7EEF2;
}

.sports-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--bg-soft);
  color: var(--text-600);
  font-weight: 600;
  font-size: .85rem;
  padding: .45rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid #E7EEF2;
}

/* Phone illustration */
.phone-wrap {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: 0 auto;
}

/* ============================================================
   7. ABOUT / STATS
   ============================================================ */
.stat-card {
    text-align: center;
    padding: 1.6rem 1rem;
    background: #00233c;
}

.stat-number {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--brand-blue);
}

.stat-label {
    font-size: .85rem;
    font-weight: 600;
    color: #ffffff;
}

/* ============================================================
   8. FEATURE CARDS
   ============================================================ */
.feature-card {
  background: #fff;
  border: 1px solid #EDF2F5;
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -22px rgba(16, 32, 47, .25);
  border-color: transparent;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 1rem;
  background: var(--brand-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

/* ============================================================
   9. DOWNLOAD STEPS (Dark Section)
   ============================================================ */
.section-dark {
  background: var(--navy-900);
  color: #E7F0F6;
}

.step-card {
    background: var(--navy-800);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.5rem;
    /* height: 100%; */
    position: relative;
    margin-bottom: 27px;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-family: 'Manrope', sans-serif;
}

.step-title { color: #fff; font-size: 1.05rem; margin-bottom: .5rem; }
.step-text  { color: #9FB3C2; font-size: .92rem; margin: 0; }

/* ============================================================
   10. HIGHLIGHT BAND (Gradient)
   ============================================================ */
.highlight-band { background: var(--brand-gradient); }

.highlight-card {
    background: rgb(2 11 51 / 75%);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: var(--radius-lg);
    padding: 2rem 1.6rem;
    height: 100%;
    color: #fff;
}
.highlight-card i    { font-size: 1.7rem; margin-bottom: 1rem; display: block; }
.highlight-card h3   { color: #fff; font-size: 1.15rem; }
.highlight-card p    { color: rgba(255, 255, 255, .88); font-size: .92rem; margin: 0; }

/* ============================================================
   11. FAQ / ACCORDION
   ============================================================ */
.accordion-sportzfy .accordion-item {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  margin-bottom: .9rem;
}

.accordion-sportzfy .accordion-button {
  background: var(--navy-800);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 1.2rem 1.4rem;
  box-shadow: none;
}

.accordion-sportzfy .accordion-button:not(.collapsed) {
  background: var(--navy-700);
  color: #fff;
}

.accordion-sportzfy .accordion-button::after {
  filter: invert(1) brightness(2);
}

.accordion-sportzfy .accordion-body {
  background: var(--navy-800);
  color: #AEC1CF;
  font-size: .94rem;
  padding: 0 1.4rem 1.3rem;
}

/* ============================================================
   12. FINAL CTA BAND
   ============================================================ */
.cta-band {
  background: var(--brand-gradient);
  border-radius: 2rem;
  padding: 3.2rem 2rem;
  text-align: center;
  color: #fff;
  margin: 0 auto;
}
.cta-band h2 { color: #fff; }
.cta-band p  { color: rgba(255, 255, 255, .92); }

/* ============================================================
   13. FOOTER
   ============================================================ */
footer { background: var(--navy-900); color: #9FB3C2; }
footer a { color: #C9D8E2; }
footer a:hover { color: #fff; }

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}

.footer-disclaimer {
  font-size: .78rem;
  color: #6E8497;
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
}