/*
Theme Name: GreenTV Core
Theme URI: https://greentv.app
Author: GreenTV Team
Description: Clean custom theme built to exactly match the visual design of greentv.app. No vendor templates, no copied corrupted code. Dark cinematic style with green primary accent.
Version: 1.0
Text Domain: greentv-core
*/

:root {
  --gtv-bg: #0a0a0a;
  --gtv-surface: #111111;
  --gtv-green: #00b140;
  --gtv-green-dark: #00802e;
  --gtv-text: #f4f4f4;
  --gtv-muted: #b0b0b0;
  --radius: 8px;
}

body {
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background: var(--gtv-bg);
  color: var(--gtv-text);
  margin: 0;
  line-height: 1.6;
}

header {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 177, 64, 0.25);
}

.site-logo {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #fff;
  text-decoration: none;
}

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

.hero {
  min-height: 85vh;
  background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.85) 100%), 
              url('https://picsum.photos/id/1015/2000/1200') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content h1 {
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 1.2rem 0;
  color: #ffffff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.75);
  letter-spacing: -3.5px;
}

.hero-content p {
  font-size: 1.35rem;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  color: var(--gtv-muted);
  font-weight: 400;
}

.btn-primary {
  background: var(--gtv-green);
  color: white;
  padding: 16px 48px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 177, 64, 0.3);
}

.btn-primary:hover {
  background: #00c94a;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 177, 64, 0.4);
}

.content-area {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}

.section-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gtv-green);
  border-radius: 3px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--gtv-surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 177, 64, 0.1);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.75rem;
}

.card h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.35rem;
  line-height: 1.3;
}

.footer {
  background: #050505;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  color: var(--gtv-muted);
  border-top: 1px solid rgba(0, 177, 64, 0.2);
}

.debug-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #00b140, #00e055);
  color: #000;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  z-index: 99999;
  box-shadow: 0 -3px 15px rgba(0, 177, 64, 0.5);
  text-transform: uppercase;
}

/* Override any old gold styles */
h1, .hero h1 {
  color: #fff !important;
}


