/*
Theme Name: Diamond Sports 247
Theme URI: https://football-match-live.lovable.app
Author: Diamond Sports 247
Author URI: https://football-match-live.lovable.app
Description: A premium, minimal, one-page football streaming theme. Netflix/Apple TV inspired dark UI with deep red and gold accents. Built for Diamond Sports 247 — Watch Every Match. Every Moment.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: diamond-sports-247
Tags: one-page, dark-mode, sports, streaming, custom-colors, custom-logo, custom-menu, featured-images, translation-ready
*/

/* -------------------------------------------------------------
   Diamond Sports 247 — Premium Streaming Theme
   Colors: #000000 background, #D40000 primary, #C9A24B gold
------------------------------------------------------------- */

:root {
  --ds-bg: #000000;
  --ds-surface: #0a0a0a;
  --ds-surface-2: #141414;
  --ds-border: rgba(255,255,255,0.08);
  --ds-text: #f5f5f7;
  --ds-muted: #a1a1a6;
  --ds-primary: #D40000;
  --ds-primary-hover: #ff1a1a;
  --ds-gold: #C9A24B;
  --ds-radius: 14px;
  --ds-shadow: 0 20px 60px rgba(0,0,0,0.6);
  --ds-max: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ds-bg);
  color: var(--ds-text);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--ds-text); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ds-primary); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4 { font-weight: 700; letter-spacing: -0.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
p { color: var(--ds-muted); }

.container { max-width: var(--ds-max); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,0,0,0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--ds-border);
}
.site-header .container { display:flex; align-items:center; justify-content:space-between; height:68px; }
.site-brand { font-weight: 800; font-size: 1.1rem; letter-spacing: .02em; }
.site-brand .accent { color: var(--ds-primary); }
.site-nav ul { display:flex; gap: 28px; list-style:none; padding:0; margin:0; }
.site-nav a { color: var(--ds-muted); font-size: .95rem; }
.site-nav a:hover { color: var(--ds-text); }

.btn {
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 22px; border-radius: 999px; font-weight: 600;
  background: var(--ds-primary); color: #fff !important;
  transition: transform .15s ease, background .2s ease;
  border: none; cursor: pointer;
}
.btn:hover { background: var(--ds-primary-hover); transform: translateY(-1px); }
.btn.ghost { background: transparent; border: 1px solid var(--ds-border); color: var(--ds-text) !important; }
.btn.gold { background: var(--ds-gold); color: #111 !important; }

/* Hero */
.hero { position: relative; padding: 120px 0 90px; text-align: center; overflow: hidden; }
.hero::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(212,0,0,0.25), transparent 70%),
    radial-gradient(40% 40% at 80% 60%, rgba(201,162,75,0.12), transparent 70%);
  pointer-events:none;
}
.hero .eyebrow { color: var(--ds-gold); font-size:.85rem; letter-spacing:.2em; text-transform:uppercase; }
.hero p.lead { max-width: 640px; margin: 18px auto 32px; font-size: 1.15rem; color: var(--ds-muted); }
.hero .cta-row { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* Sections */
section { padding: 80px 0; position: relative; }
.section-title { text-align:center; margin-bottom: 48px; }
.section-title h2 { margin-bottom: 8px; }
.section-title p { max-width: 560px; margin: 0 auto; }

/* Match grid */
.match-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.match-card {
  background: linear-gradient(180deg, var(--ds-surface-2), var(--ds-surface));
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius);
  padding: 22px; transition: transform .2s ease, border-color .2s ease;
}
.match-card:hover { transform: translateY(-4px); border-color: rgba(212,0,0,0.5); }
.match-card .league { color: var(--ds-gold); font-size:.75rem; letter-spacing:.18em; text-transform:uppercase; }
.match-card .teams { display:flex; align-items:center; justify-content:space-between; margin: 14px 0; font-weight:700; font-size:1.1rem; }
.match-card .vs { color: var(--ds-muted); font-weight:500; }
.match-card .meta { color: var(--ds-muted); font-size:.9rem; margin-bottom:16px; }
.match-card .price { font-size: 1.25rem; font-weight: 800; color: #fff; }
.match-card .price small { color: var(--ds-muted); font-weight:500; font-size:.8rem; }

/* Features */
.features { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap:20px; }
.feature {
  padding: 26px; border:1px solid var(--ds-border); border-radius: var(--ds-radius);
  background: var(--ds-surface);
}
.feature h3 { font-size: 1.1rem; }
.feature .icon { width:42px; height:42px; border-radius:12px; background: rgba(212,0,0,0.15); color: var(--ds-primary); display:flex; align-items:center; justify-content:center; font-size:20px; margin-bottom:14px; }

/* Steps */
.steps { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.step { text-align:center; padding: 22px; }
.step .num {
  width:52px; height:52px; border-radius:50%; margin: 0 auto 14px;
  display:flex; align-items:center; justify-content:center;
  background: var(--ds-primary); color:#fff; font-weight:800;
}

/* Footer */
.site-footer { border-top:1px solid var(--ds-border); padding: 40px 0; text-align:center; color: var(--ds-muted); font-size:.9rem; }
.site-footer .site-brand { color: var(--ds-text); }

/* Responsive nav */
@media (max-width: 720px) {
  .site-nav { display:none; }
  .hero { padding: 80px 0 60px; }
}
