/*
Theme Name: Dekho Live
Theme URI: https://dekholive.online
Author: Dekho Live
Author URI: https://dekholive.online
Description: Official Dekho Live Sports Streaming APK Download Theme
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: dekholive
*/

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #E8192C;
  --red-dark: #b5111f;
  --black: #0a0a0a;
  --dark: #111111;
  --card: #1a1a1a;
  --border: #2a2a2a;
  --white: #ffffff;
  --gray: #888888;
  --light: #cccccc;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 64px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--white);
}

.site-logo span { color: var(--red); }

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.live-dot {
  width: 7px; height: 7px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(232,25,44,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(64px, 12vw, 140px);
  color: var(--white);
  margin-bottom: 8px;
}

.hero-sub {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(32px, 6vw, 72px);
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 17px;
  color: var(--light);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ========== DOWNLOAD BUTTONS ========== */
.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: white;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--light);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

/* ========== STATS ========== */
.stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
}

.stat {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.05em;
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

/* ========== FEATURES ========== */
.features {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.feature-card {
  background: var(--dark);
  padding: 32px 28px;
  transition: background 0.2s;
}

.feature-card:hover { background: var(--card); }

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ========== DOWNLOAD SECTION ========== */
.download-section {
  padding: 80px 24px;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.download-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.download-inner h2 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 16px;
}

.download-inner p {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 40px;
}

.apk-info {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.apk-info-item {
  text-align: center;
}

.apk-info-item .val {
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.05em;
}

.apk-info-item .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 2px;
}

/* ========== PAGE CONTENT ========== */
.page-wrap {
  padding: 120px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.page-wrap h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 32px;
  color: var(--white);
}

.page-content h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  color: var(--white);
  margin: 40px 0 12px;
  letter-spacing: 0.05em;
}

.page-content p {
  color: var(--light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.page-content ul {
  color: var(--light);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 16px 24px;
}

.page-content strong { color: var(--white); }

.page-content a { color: var(--red); }
.page-content a:hover { text-decoration: underline; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}

.footer-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 32px;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--red); }

.footer-copy {
  font-size: 12px;
  color: var(--gray);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 600px) {
  body {
    padding-top: 58px;
  }
  .hero {
    min-height: calc(100vh - 58px);
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .stats { flex-wrap: wrap; }
  .stat { min-width: 50%; }
  .btn-group { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }
  .apk-info { padding: 16px; gap: 16px; }
  .features { padding: 40px 16px; }
  .download-section { padding: 40px 16px; }
}