:root{
  --bg: #f8fafc;
  --card:#ffffff;
  --ink:#1a202c;
  --muted:#64748b;
  --brand:#3b82f6;     /* modern blue */
  --brand-2:#2563eb;   /* darker blue */
  --brand-3:#1d4ed8;   /* darkest blue */
  --line:#e2e8f0;
  --accent:#eff6ff;    /* soft blue tint */
  --shadow: 0 10px 30px rgba(59, 130, 246, .08);
  --shadow-lg: 0 20px 40px rgba(59, 130, 246, .12);
  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1200px;
  --success: #10b981;  /* green */
  --warning: #f59e0b;  /* amber */
  --error: #ef4444;    /* red */
  --purple: #8b5cf6;   /* purple */
  --orange: #f97316;   /* orange */
  --pink: #ec4899;     /* pink */
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 20px}

/* NAV */
.nav{
  position: sticky; top:0; z-index: 50;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px; font-weight:800; letter-spacing:.3px;
}
.brand svg{width:32px;height:32px}
.brand-logo{
  width: 40px; height: 40px; object-fit: contain; border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.menu{display:flex; gap:18px}
.menu a{
  padding:10px 14px; border-radius: 12px; color: var(--muted);
  font-weight:600;
}
.menu a:hover{background:var(--accent); color: var(--brand)}
.menu a.active{background:var(--accent); color: var(--brand); font-weight: 700}
.cta{
  background: var(--brand); color:#fff; padding:10px 16px; border-radius: 12px; font-weight:700;
  box-shadow: var(--shadow);
}
.cta:hover{background: var(--brand-2)}
.burger{display:none; border:1px solid var(--line); padding:8px 10px; border-radius:12px; background:#fff}
@media (max-width: 900px){
  .menu{display:flex; gap:12px}
  .menu a{padding:8px 10px; font-size:14px}
  .burger{display:none}
}

/* HERO */
.hero{
  position:relative; overflow:hidden; padding:20px 0 40px;
  background: radial-gradient(1000px 600px at 85% -10%, #eafff3 0, transparent 60%), var(--bg);
}
.hero-logo{
  margin-bottom: 20px;
  text-align: center;
  background: var(--bg);
}
.big-logo{
  width: 120px; 
  height: 120px; 
  object-fit: contain; 
  background: transparent;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
  transition: transform 0.3s ease;
}
.big-logo:hover{
  transform: scale(1.05);
}
.hero-grid{
  display:grid; grid-template-columns: 1.2fr 1fr; gap:40px; align-items:center;
}
@media (max-width: 900px){ .hero-grid{grid-template-columns:1fr} }
.title{
  font-family: "Playfair Display", serif; font-size: clamp(30px, 6vw, 56px);
  line-height:1.05; margin:0 0 14px;
}
.subtitle{color:var(--muted); font-size: clamp(16px, 2.2vw, 18px); margin-bottom: 26px}
.pill{
  display:inline-flex; align-items:center; gap:10px; padding:8px 12px; border-radius:999px; background:#fff; border:1px solid var(--line);
  margin-bottom: 18px; font-weight:600; color: var(--brand-2)
}
.hero-card{
  background:linear-gradient(180deg,#ffffff, #fafffb);
  border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow);
}
.hero-stats{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top: 22px}
.stat{
  background:#fff; border:1px solid var(--line); border-radius:14px; padding:16px; text-align:center
}
.stat .big{font-weight:800; font-size: 26px; color:var(--brand)}
.stat .small{color:var(--muted); font-weight:600; font-size: 12px}

/* SECTION */
section{padding:70px 0}

/* PARTNERS RESPONSIVE */
.partners-container::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .partners-container {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 20px;
    -webkit-overflow-scrolling: touch;
  }
  
  .partners-container > div {
    flex: 0 0 200px;
    scroll-snap-align: start;
  }
}
.section-head{
  display:flex; align-items:end; justify-content:space-between; gap:14px; margin-bottom:22px
}
.section-title{font-size: clamp(22px, 3vw, 32px); margin:0}
.section-desc{color:var(--muted); max-width:650px}

/* LIVE INDICATOR */
.live-indicator{
  display:flex; align-items:center; gap:8px; background:var(--live); color:white; 
  padding:6px 12px; border-radius:20px; font-weight:700; font-size:12px; text-transform:uppercase;
}
.pulse{
  width:8px; height:8px; background:white; border-radius:50%; animation:pulse 2s infinite;
}
@keyframes pulse{
  0%{opacity:1} 50%{opacity:0.5} 100%{opacity:1}
}

/* MATCH CARDS */
.matches-grid{
  display:grid; gap:20px; grid-template-columns:repeat(auto-fit, minmax(350px, 1fr));
}
@media (max-width: 768px){ .matches-grid{grid-template-columns:1fr} }

.match-card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius); 
  padding:20px; box-shadow:var(--shadow); transition:all 0.3s ease; position:relative;
}
.match-card:hover{transform:translateY(-2px); box-shadow:0 15px 40px rgba(16, 59, 38, .12)}

.match-card.live{border-left:4px solid var(--live)}
.match-card.upcoming{border-left:4px solid var(--upcoming)}
.match-card.completed{border-left:4px solid var(--completed)}

.match-header{
  display:flex; justify-content:space-between; align-items:center; margin-bottom:16px;
}
.match-title{font-weight:700; font-size:16px; color:var(--ink)}
.match-status{
  padding:4px 12px; border-radius:12px; font-size:11px; font-weight:700; text-transform:uppercase;
}
.match-status.live{background:var(--live); color:white}
.match-status.upcoming{background:var(--upcoming); color:white}
.match-status.completed{background:var(--completed); color:white}

.teams{
  display:flex; justify-content:space-between; align-items:center; margin-bottom:12px;
}
.team{
  display:flex; align-items:center; gap:8px; flex:1;
}
.team-name{font-weight:600; color:var(--ink)}
.team-score{font-size:18px; font-weight:800; color:var(--brand); margin-left:auto}
.vs{font-weight:700; color:var(--muted); margin:0 12px}

.match-info{
  display:flex; justify-content:space-between; align-items:center; font-size:13px; 
  color:var(--muted); padding-top:12px; border-top:1px solid var(--line);
}
.match-venue{display:flex; align-items:center; gap:4px}
.match-time{display:flex; align-items:center; gap:4px}

.match-result{
  background:var(--accent); color:var(--brand-2); padding:8px 12px; 
  border-radius:8px; font-weight:600; font-size:13px; margin-top:8px;
}

/* LOADING STATES */
.loading{
  text-align:center; padding:40px; color:var(--muted);
}
.loading i{font-size:24px; color:var(--brand); margin-bottom:12px; animation:spin 1s linear infinite}
@keyframes spin{from{transform:rotate(0deg)} to{transform:rotate(360deg)}}

.no-matches{
  text-align:center; padding:40px; color:var(--muted);
}
.no-matches i{font-size:48px; color:var(--line); margin-bottom:16px}

/* FOOTER */
footer{
  padding:30px 0; border-top:1px solid var(--line); color:var(--muted); font-weight:600;
  background:linear-gradient(180deg, var(--bg), #fafffb);
}
.footer-content{
  display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
}
.footer-links a{
  display:flex; align-items:center; gap:8px; color:var(--brand); font-weight:600;
  padding:8px 12px; border-radius:8px; transition:all 0.3s ease;
}
.footer-links a:hover{background:var(--accent); color:var(--brand-2)}

/* ICONS */
.icon{width:28px; height:28px; flex:0 0 28px}
.split{display:flex; align-items:center; gap:10px}

/* REFRESH ANIMATION */
.refreshing i{animation:spin 1s linear infinite}

/* APP SHOWCASE STYLES */
.apps-grid{
  display:grid; gap:24px; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  margin-top:40px;
}
@media (max-width: 768px){ .apps-grid{grid-template-columns:1fr} }

.app-card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius-lg); 
  padding:32px; box-shadow:var(--shadow); transition:all 0.3s ease; position:relative;
  overflow:hidden;
}
.app-card:hover{transform:translateY(-4px); box-shadow:var(--shadow-lg)}

.app-card.featured{
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
  color:white; border:none;
}
.app-card.featured .app-title{color:white}
.app-card.featured .app-desc{color:rgba(255,255,255,0.9)}

.app-icon{
  width:64px; height:64px; border-radius:16px; margin-bottom:20px;
  display:flex; align-items:center; justify-content:center;
  font-size:28px; color:white; font-weight:700;
}
.app-card.featured .app-icon{background:rgba(255,255,255,0.2)}
.app-card .app-icon{background:var(--brand)}

.app-title{font-size:24px; font-weight:700; margin:0 0 12px; color:var(--ink)}
.app-desc{color:var(--muted); margin-bottom:20px; line-height:1.6}
.app-status{
  display:inline-flex; align-items:center; gap:8px; padding:8px 16px; 
  border-radius:20px; font-weight:600; font-size:14px;
}
.app-status.live{background:var(--success); color:white}
.app-status.coming-soon{background:var(--warning); color:white}

.app-features{
  list-style:none; padding:0; margin:20px 0;
}
.app-features li{
  display:flex; align-items:center; gap:8px; margin-bottom:8px;
  color:var(--muted); font-size:14px;
}
.app-features i{color:var(--brand); width:16px}

/* COMPANY SECTION */
.company-section{
  background:linear-gradient(135deg, var(--accent), #ffffff);
  padding:80px 0;
}
.company-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
}
@media (max-width: 900px){ .company-grid{grid-template-columns:1fr; gap:40px} }

.company-logo{
  width:80px; height:80px; object-fit:contain; border-radius:16px;
  box-shadow:0 8px 24px rgba(59, 130, 246, 0.15);
  margin-bottom:24px;
}

.stats-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; margin-top:40px;
}
@media (max-width: 600px){ .stats-grid{grid-template-columns:1fr} }

.stat-card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:24px; text-align:center; box-shadow:var(--shadow);
}
.stat-number{font-size:36px; font-weight:800; color:var(--brand); margin-bottom:8px}
.stat-label{color:var(--muted); font-weight:600; font-size:14px}

/* CONTACT SECTION */
.contact-section{
  background:var(--brand); color:white; padding:80px 0;
}
.contact-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start;
}
@media (max-width: 900px){ .contact-grid{grid-template-columns:1fr; gap:40px} }

.contact-form{
  background:rgba(255,255,255,0.1); border-radius:var(--radius-lg); padding:32px;
  backdrop-filter:blur(10px);
}
.form-group{margin-bottom:24px}
.form-group label{display:block; margin-bottom:8px; font-weight:600}
.form-group input, .form-group textarea{
  width:100%; padding:12px 16px; border:none; border-radius:12px;
  background:rgba(255,255,255,0.9); color:var(--ink); font-size:16px;
}
.form-group textarea{height:120px; resize:vertical}

.btn{
  display:inline-flex; align-items:center; gap:8px; padding:12px 24px;
  border-radius:12px; font-weight:600; text-decoration:none; transition:all 0.3s ease;
  border:none; cursor:pointer; font-size:16px;
}
.btn-primary{
  background:white; color:var(--brand);
}
.btn-primary:hover{background:var(--accent); transform:translateY(-2px)}
.btn-secondary{
  background:transparent; color:white; border:2px solid white;
}
.btn-secondary:hover{background:white; color:var(--brand)}

/* COMING SOON CARDS */
.coming-soon-grid{
  display:grid; grid-template-columns:repeat(2, 1fr); gap:24px; margin-top:40px;
}
@media (max-width: 600px){ .coming-soon-grid{grid-template-columns:1fr} }

.coming-soon-card{
  background:var(--card); border:2px dashed var(--line); border-radius:var(--radius);
  padding:32px; text-align:center; position:relative; overflow:hidden;
}
.coming-soon-card::before{
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg, var(--purple), var(--orange), var(--pink));
}

.coming-soon-icon{
  width:48px; height:48px; border-radius:12px; margin:0 auto 16px;
  display:flex; align-items:center; justify-content:center;
  font-size:20px; color:white; font-weight:700;
}
.coming-soon-title{font-size:20px; font-weight:700; margin-bottom:8px; color:var(--ink)}
.coming-soon-desc{color:var(--muted); font-size:14px; margin-bottom:16px}

/* ANIMATIONS */
@keyframes fadeInUp{
  from{opacity:0; transform:translateY(30px)}
  to{opacity:1; transform:translateY(0)}
}
.fade-in-up{animation:fadeInUp 0.6s ease-out}

@keyframes float{
  0%, 100%{transform:translateY(0px)}
  50%{transform:translateY(-10px)}
}
.float{animation:float 3s ease-in-out infinite}
