/* =========================
   Football Hub Cy — Landing
   (κρατάμε τα ίδια χρώματα)
   ========================= */
:root{
  --bg:#24353F;        /* φόντο */
  --ink:#E8F1F2;       /* κείμενο */
  --muted:#A5CFCD;     /* mint/teal accent */
  --card:#2C4150;      /* κάρτες */
  --btn:#A5CFCD;       /* primary CTA */
  --btn-ink:#0E2A33;   /* ink μέσα στο CTA */
  --line:rgba(255,255,255,.08);
  --shadow:0 16px 50px rgba(0,0,0,.35);
}

/* Base */
*{box-sizing:border-box}
html,body{
  margin:0; padding:0;
  background:
    radial-gradient(1200px 800px at 85% -10%, rgba(165,207,205,.12), transparent 60%),
    radial-gradient(900px 600px at -20% 40%, rgba(165,207,205,.10), transparent 55%),
    var(--bg);
  color:var(--ink);
  font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
img{display:block; max-width:100%}

.wrap{max-width:1140px; margin:0 auto; padding:0 24px}

/* Header */
.site-header{
  position:sticky; top:0; z-index:10;
  backdrop-filter:saturate(180%) blur(8px);
  background:rgba(20,34,41,.55);
  border-bottom:1px solid var(--line);
}
.site-header .wrap{display:flex; align-items:center; justify-content:space-between; height:68px}
.brand{display:flex; align-items:center; gap:12px; color:var(--ink); text-decoration:none; font-weight:800; letter-spacing:.2px}
.brand img{width:36px; height:36px; border-radius:10px; box-shadow:0 6px 18px rgba(0,0,0,.25)}
.nav a{color:var(--ink); opacity:.9; text-decoration:none; margin-left:20px; font-weight:600}
.nav a:hover{opacity:1; text-decoration:underline}

/* Hero */
.hero{padding:72px 0 48px}
.hero .wrap{
  display:grid; grid-template-columns:2fr .85fr; gap:56px; align-items:center;
  min-height:68vh;
}
.hero-left h1{
  font-size: clamp(36px, 4.6vw, 35px);
  line-height:1.05; margin:0 0 14px; letter-spacing:.2px; font-weight:800;
}
.hero-left h1 .accent{
  color:var(--muted);
  text-shadow:0 2px 0 rgba(0,0,0,.15);
}
.lead{opacity:.94; font-size:18px; margin:0 0 22px; max-width:62ch}

/* CTA buttons */
.cta-row{display:flex; flex-direction:column; gap:14px; margin:10px 0 22px}
.cta-primary{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  min-height:54px; padding:0 22px;
  background:var(--btn); color:var(--btn-ink); font-weight:800; text-decoration:none;
  box-shadow:var(--shadow); border:1px solid rgba(14,42,51,.12);
  transition:.2s transform ease, .2s box-shadow ease, .2s filter ease;
}
.cta-primary:hover{transform:translateY(-1px); filter:saturate(110%)}
.cta-primary:active{transform:translateY(0)}
.cta-primary:focus-visible{outline:3px solid rgba(165,207,205,.55); outline-offset:2px}

/* Store badges */
.store-badges{display:flex; gap:12px; flex-wrap:wrap}
.store-btn{
  display:inline-flex; align-items:center; gap:10px; align-self:center;
  background:linear-gradient(180deg, #2E4656 0%, #263B48 100%);
  color:var(--ink); padding:11px 14px; border-radius:12px;
  text-decoration:none; border:1px solid var(--line);
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  font-weight:700;
}
.store-btn svg{opacity:.95}
.store-btn:hover{transform:translateY(-1px)}
.store-btn:active{transform:translateY(0)}
.store-btn span{position:relative; top:1px}

/* Feature chips */
.features{display:flex; gap:12px; flex-wrap:wrap; padding:0; margin:6px 0 0}
.features li{
  list-style:none; background:rgba(44,65,80,.8);
  border:1px solid var(--line); padding:8px 12px;
  border-radius:12px; font-size:14px; box-shadow:0 8px 20px rgba(0,0,0,.18)
}

/* Right hero: “phone card” */
.hero-right{position:relative; display:flex; justify-content:center}
.app-hero{
  width:min(460px, 90%);
  border-radius:28px; background:#18303E;
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.05);
  /* “πρόστυλο” bezel */
  padding:8px; background-clip:padding-box;
}
/* γυαλιστερό halo πίσω από το τηλέφωνο */
.hero-right::before{
  content:""; position:absolute; inset:auto; width:82%; height:78%;
  top:8%; filter:blur(38px); z-index:-1;
  background:radial-gradient(closest-side, rgba(165,207,205,.22), transparent 70%);
  border-radius:30px;
}

/* Footer */
.site-footer{padding:28px 0; border-top:1px solid var(--line); background:rgba(0,0,0,.18)}
.site-footer .wrap{display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap}
.footer-links a{color:var(--ink); opacity:.9; margin-left:18px; text-decoration:none; font-weight:600}
.footer-links a:hover{opacity:1; text-decoration:underline}

/* Accessibility tweaks */
a:focus-visible{outline:3px solid rgba(165,207,205,.5); outline-offset:2px; border-radius:12px}

/* Responsive */
@media (max-width: 1024px){
  .hero .wrap{gap:40px}
}
@media (max-width: 900px){
  .hero{padding:56px 0 36px}
  .hero .wrap{grid-template-columns:1fr}
  .hero-left{order:2; text-align:center}
  .cta-row{align-items:center}
  .features{justify-content:center}
  .hero-right{order:1}
  .app-hero{width:min(520px, 92%)}
}
@media (max-width: 420px){
  .store-badges{justify-content:center}
  .store-btn{padding:10px 12px}
}
