/* StremLux — Luxury/Black Gold IPTV Theme */
/* Design DNA: Dark luxury, gold accents, Cormorant Garamond + Montserrat */
/* CSS prefix: lx-* */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
  --lx-font-display: 'Cormorant Garamond', serif;
  --lx-font-body: 'Montserrat', sans-serif;
  --lx-bg-body: #0A0A0A;
  --lx-bg-nav: #080808;
  --lx-bg-card: #141414;
  --lx-bg-section-alt: #0F0F0F;
  --lx-bg-footer: #050505;
  --lx-gold: #C9A84C;
  --lx-gold-light: #E0C068;
  --lx-gold-dark: #A08030;
  --lx-text-primary: #F5F0E8;
  --lx-text-body: #C8C0B4;
  --lx-text-muted: #9A9080;
  --lx-border: #2A2520;
  --lx-border-gold: rgba(201,168,76,0.25);
  --lx-btn-gradient: linear-gradient(135deg, #C9A84C 0%, #E0C068 50%, #C9A84C 100%);
  --lx-btn-gradient-hover: linear-gradient(135deg, #E0C068 0%, #C9A84C 50%, #E0C068 100%);
  --lx-radius-sm: 4px;
  --lx-radius-md: 8px;
  --lx-radius-lg: 12px;
  --lx-radius-pill: 50px;
  --lx-shadow-sm: 0 2px 12px rgba(201,168,76,0.06);
  --lx-shadow-md: 0 4px 24px rgba(201,168,76,0.1);
  --lx-shadow-lg: 0 8px 40px rgba(201,168,76,0.12);
  --lx-shadow-gold: 0 0 30px rgba(201,168,76,0.15);
  --lx-container: 1200px;
  --lx-header-h: 72px;
  --lx-transition: 0.3s ease;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--lx-font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--lx-text-body);
  background: var(--lx-bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: var(--lx-gold); transition: color var(--lx-transition); }
a:hover { color: var(--lx-gold-light); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: var(--lx-font-display); color: var(--lx-text-primary); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
p { margin-bottom: 1rem; }

/* === UTILITY === */
.lx-container { max-width: var(--lx-container); margin: 0 auto; padding: 0 1.5rem; }
.lx-section { padding: 5rem 0; }
.lx-section-alt { background: var(--lx-bg-section-alt); }
.lx-text-gold { color: var(--lx-gold); }
.lx-text-center { text-align: center; }
.lx-gold-line { width: 60px; height: 3px; background: var(--lx-btn-gradient); margin: 1rem auto; border-radius: 2px; }
.lx-badge { display: inline-block; background: rgba(201,168,76,0.15); color: var(--lx-gold); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; padding: 0.4rem 1rem; border-radius: var(--lx-radius-pill); border: 1px solid var(--lx-border-gold); }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 10000; padding: 0.5rem 1rem; background: var(--lx-gold); color: #000; }
.skip-link:focus { left: 0; }

/* === TOP BAR === */
.lx-top-bar { background: var(--lx-bg-footer); border-bottom: 1px solid var(--lx-border); padding: 0.5rem 0; font-size: 0.8rem; color: var(--lx-text-muted); }
.lx-top-bar .lx-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.lx-top-bar a { color: var(--lx-gold); font-size: 0.8rem; }

/* === HEADER === */
.lx-header { background: var(--lx-bg-nav); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--lx-border); backdrop-filter: blur(10px); }
.lx-header-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--lx-container); margin: 0 auto; padding: 0 1.5rem; height: var(--lx-header-h); }
.lx-logo { font-family: var(--lx-font-display); font-size: 1.8rem; font-weight: 700; color: var(--lx-text-primary); letter-spacing: 1px; }
.lx-logo span { color: var(--lx-gold); }
.lx-nav { display: flex; gap: 1.5rem; align-items: center; }
.lx-nav a { color: var(--lx-text-body); font-size: 0.9rem; font-weight: 500; transition: color var(--lx-transition); position: relative; }
.lx-nav a:hover, .lx-nav a.active { color: var(--lx-gold); }
.lx-nav a.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--lx-gold); border-radius: 1px; }
.lx-nav-cta { background: var(--lx-btn-gradient); color: #0A0A0A !important; padding: 0.5rem 1.25rem; border-radius: var(--lx-radius-pill); font-weight: 700; font-size: 0.85rem; }
.lx-nav-cta:hover { background: var(--lx-btn-gradient-hover); color: #0A0A0A !important; }

/* Hamburger */
.lx-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 0.5rem; }
.lx-hamburger span { width: 24px; height: 2px; background: var(--lx-gold); transition: var(--lx-transition); }

/* === BUTTONS === */
.lx-btn { display: inline-block; padding: 0.85rem 2rem; font-family: var(--lx-font-body); font-size: 0.9rem; font-weight: 700; border-radius: var(--lx-radius-pill); cursor: pointer; transition: all var(--lx-transition); border: none; text-align: center; letter-spacing: 0.5px; }
.lx-btn-primary { background: var(--lx-btn-gradient); color: #0A0A0A; }
.lx-btn-primary:hover { background: var(--lx-btn-gradient-hover); color: #0A0A0A; box-shadow: var(--lx-shadow-gold); transform: translateY(-2px); }
.lx-btn-outline { background: transparent; color: var(--lx-gold); border: 2px solid var(--lx-gold); }
.lx-btn-outline:hover { background: var(--lx-gold); color: #0A0A0A; }
.lx-btn-sm { padding: 0.6rem 1.5rem; font-size: 0.85rem; }

/* === HERO === */
.lx-hero { position: relative; padding: 6rem 0 5rem; overflow: hidden; background: linear-gradient(135deg, #0A0A0A 0%, #141414 50%, #0A0A0A 100%); }
.lx-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%); pointer-events: none; }
.lx-hero .lx-container { position: relative; z-index: 1; display: flex; align-items: center; gap: 3rem; }
.lx-hero-content { flex: 1; }
.lx-hero-content h1 { margin-bottom: 1.25rem; }
.lx-hero-content h1 .lx-text-gold { font-style: italic; }
.lx-hero-content p { font-size: 1.1rem; color: var(--lx-text-body); margin-bottom: 2rem; max-width: 540px; }
.lx-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.lx-hero-img { flex: 1; text-align: right; }
.lx-hero-img img { border-radius: var(--lx-radius-lg); box-shadow: var(--lx-shadow-lg); }

/* === STATS BAR === */
.lx-stats { background: var(--lx-bg-card); border-top: 1px solid var(--lx-border-gold); border-bottom: 1px solid var(--lx-border-gold); padding: 2.5rem 0; }
.lx-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.lx-stat-item h3 { font-size: 2.2rem; color: var(--lx-gold); margin-bottom: 0.25rem; }
.lx-stat-item p { font-size: 0.85rem; color: var(--lx-text-muted); margin: 0; text-transform: uppercase; letter-spacing: 1px; }

/* === PRICING === */
.lx-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.lx-price-card { background: var(--lx-bg-card); border: 1px solid var(--lx-border); border-radius: var(--lx-radius-lg); padding: 2.5rem 2rem; text-align: center; transition: all var(--lx-transition); position: relative; }
.lx-price-card:hover { border-color: var(--lx-gold); box-shadow: var(--lx-shadow-gold); transform: translateY(-4px); }
.lx-price-card.popular { border-color: var(--lx-gold); box-shadow: var(--lx-shadow-gold); }
.lx-price-card.popular::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--lx-btn-gradient); color: #0A0A0A; font-size: 0.75rem; font-weight: 700; padding: 0.3rem 1rem; border-radius: var(--lx-radius-pill); letter-spacing: 1px; text-transform: uppercase; }
.lx-price-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.lx-price-amount { font-family: var(--lx-font-display); font-size: 3rem; font-weight: 700; color: var(--lx-gold); line-height: 1; margin: 1rem 0 0.25rem; }
.lx-price-amount small { font-size: 1rem; color: var(--lx-text-muted); font-weight: 400; }
.lx-price-period { font-size: 0.85rem; color: var(--lx-text-muted); margin-bottom: 1.5rem; }
.lx-price-features { text-align: left; margin-bottom: 2rem; }
.lx-price-features li { padding: 0.5rem 0; font-size: 0.9rem; color: var(--lx-text-body); border-bottom: 1px solid var(--lx-border); display: flex; gap: 0.5rem; align-items: center; }
.lx-price-features li::before { content: '\2713'; color: var(--lx-gold); font-weight: 700; flex-shrink: 0; }
.lx-price-card .lx-btn { width: 100%; }

/* === FEATURES === */
.lx-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.lx-feature-item { background: var(--lx-bg-card); border: 1px solid var(--lx-border); border-radius: var(--lx-radius-lg); padding: 2rem; transition: all var(--lx-transition); }
.lx-feature-item:hover { border-color: var(--lx-border-gold); }
.lx-feature-icon { width: 56px; height: 56px; background: rgba(201,168,76,0.1); border-radius: var(--lx-radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; }
.lx-feature-item h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.lx-feature-item p { font-size: 0.9rem; color: var(--lx-text-muted); margin: 0; }

/* === FEATURE LIST (simple list) === */
.lx-feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem 2rem; margin-top: 1.5rem; }
.lx-feature-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; color: var(--lx-text-body); }
.lx-feature-list li::before { content: '\2713'; color: var(--lx-gold); font-weight: 700; }

/* === TRIAL FORM === */
.lx-trial-section { background: linear-gradient(135deg, #141414 0%, #0A0A0A 100%); border-top: 1px solid var(--lx-border-gold); border-bottom: 1px solid var(--lx-border-gold); }
.lx-trial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.lx-trial-content h2 { margin-bottom: 1rem; }
.lx-trial-content p { color: var(--lx-text-muted); }

/* === FORMS === */
.lx-form { display: flex; flex-direction: column; gap: 1rem; }
.lx-form label { font-size: 0.85rem; font-weight: 600; color: var(--lx-text-primary); margin-bottom: 0.25rem; display: block; }
.lx-form input, .lx-form select, .lx-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--lx-bg-body);
  border: 1px solid var(--lx-border);
  border-radius: var(--lx-radius-md);
  color: var(--lx-text-primary);
  font-family: var(--lx-font-body);
  font-size: 0.9rem;
  transition: border var(--lx-transition);
}
.lx-form input:focus, .lx-form select:focus, .lx-form textarea:focus {
  outline: none;
  border-color: var(--lx-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.lx-form input::placeholder, .lx-form textarea::placeholder { color: var(--lx-text-muted); }
.lx-form textarea { resize: vertical; min-height: 120px; }
.lx-form .lx-btn { margin-top: 0.5rem; min-height: 48px; }
.lx-form-trust { font-size: 0.8rem; color: var(--lx-text-muted); text-align: center; margin-top: 0.5rem; }
.lx-form-trust svg, .lx-form-trust span { vertical-align: middle; }
.form-message { padding: 0.75rem 1rem; border-radius: var(--lx-radius-md); font-size: 0.9rem; margin-top: 0.5rem; }
.form-message--success { background: rgba(34,197,94,0.15); color: #22c55e; border: 1px solid rgba(34,197,94,0.3); }
.form-message--error { background: rgba(239,68,68,0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }

/* === TESTIMONIALS === */
.lx-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.lx-testimonial-card { background: var(--lx-bg-card); border: 1px solid var(--lx-border); border-radius: var(--lx-radius-lg); padding: 2rem; }
.lx-testimonial-stars { color: var(--lx-gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.lx-testimonial-card blockquote { font-size: 0.95rem; color: var(--lx-text-body); font-style: italic; line-height: 1.7; margin-bottom: 1rem; }
.lx-testimonial-author { font-size: 0.85rem; font-weight: 600; color: var(--lx-text-primary); }
.lx-testimonial-author span { font-weight: 400; color: var(--lx-text-muted); }

/* === FAQ === */
.lx-faq-list { max-width: 800px; margin: 2.5rem auto 0; }
.lx-faq-item { border-bottom: 1px solid var(--lx-border); }
.lx-faq-q { width: 100%; padding: 1.25rem 0; background: none; border: none; color: var(--lx-text-primary); font-family: var(--lx-font-body); font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color var(--lx-transition); }
.lx-faq-q:hover { color: var(--lx-gold); }
.lx-faq-q::after { content: '+'; font-size: 1.5rem; color: var(--lx-gold); flex-shrink: 0; transition: transform var(--lx-transition); }
.lx-faq-q.active::after { content: '\2212'; }
.lx-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.lx-faq-a.open { max-height: 500px; padding-bottom: 1.25rem; }
.lx-faq-a p { font-size: 0.9rem; color: var(--lx-text-muted); line-height: 1.7; }

/* === CTA SECTION === */
.lx-cta-section { background: linear-gradient(135deg, #141414 0%, #0A0A0A 100%); text-align: center; padding: 5rem 0; border-top: 1px solid var(--lx-border-gold); }
.lx-cta-section h2 { margin-bottom: 1rem; }
.lx-cta-section p { color: var(--lx-text-muted); max-width: 600px; margin: 0 auto 2rem; }

/* === FOOTER === */
.lx-footer { background: var(--lx-bg-footer); border-top: 1px solid var(--lx-border); padding: 4rem 0 2rem; }
.lx-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.lx-footer-brand .lx-logo { font-size: 1.6rem; margin-bottom: 1rem; display: inline-block; }
.lx-footer-brand p { font-size: 0.85rem; color: var(--lx-text-muted); max-width: 280px; }
.lx-footer h4 { font-size: 1rem; color: var(--lx-text-primary); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; font-family: var(--lx-font-body); font-weight: 700; }
.lx-footer-links a { display: block; color: var(--lx-text-muted); font-size: 0.85rem; padding: 0.3rem 0; transition: color var(--lx-transition); }
.lx-footer-links a:hover { color: var(--lx-gold); }
.lx-footer-address { font-size: 0.85rem; color: var(--lx-text-muted); line-height: 1.8; }
.lx-footer-bottom { border-top: 1px solid var(--lx-border); margin-top: 3rem; padding-top: 1.5rem; text-align: center; font-size: 0.8rem; color: var(--lx-text-muted); }

/* === BREADCRUMB === */
.lx-breadcrumb { padding: 1.25rem 0; font-size: 0.85rem; color: var(--lx-text-muted); }
.lx-breadcrumb a { color: var(--lx-gold); }
.lx-breadcrumb span { margin: 0 0.5rem; }

/* === PAGE HEADER === */
.lx-page-header { background: linear-gradient(135deg, #0A0A0A, #141414); padding: 4rem 0 3rem; text-align: center; border-bottom: 1px solid var(--lx-border-gold); }
.lx-page-header h1 { margin-bottom: 0.75rem; }
.lx-page-header p { color: var(--lx-text-muted); max-width: 600px; margin: 0 auto; }

/* === CONTENT BLOCKS === */
.lx-content-block { padding: 3rem 0; }
.lx-content-block h2 { margin-bottom: 1rem; }
.lx-content-block h3 { margin: 1.5rem 0 0.75rem; }
.lx-content-block p { color: var(--lx-text-body); }
.lx-content-block ul { margin: 1rem 0; padding-left: 0; }
.lx-content-block ul li { padding: 0.35rem 0; padding-left: 1.25rem; position: relative; color: var(--lx-text-body); }
.lx-content-block ul li::before { content: '\2713'; position: absolute; left: 0; color: var(--lx-gold); font-weight: 700; }

/* === CHANNEL TABLE === */
.lx-channel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem; }
.lx-channel-cat { background: var(--lx-bg-card); border: 1px solid var(--lx-border); border-radius: var(--lx-radius-md); padding: 1.25rem; text-align: center; transition: border var(--lx-transition); }
.lx-channel-cat:hover { border-color: var(--lx-border-gold); }
.lx-channel-cat h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.lx-channel-cat p { font-size: 0.8rem; color: var(--lx-text-muted); margin: 0; }

/* === LEGAL PAGES === */
.lx-legal h2 { margin: 2rem 0 0.75rem; font-size: 1.4rem; }
.lx-legal h3 { margin: 1.25rem 0 0.5rem; font-size: 1.15rem; }
.lx-legal p, .lx-legal li { color: var(--lx-text-body); font-size: 0.9rem; line-height: 1.8; }
.lx-legal table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.lx-legal th, .lx-legal td { padding: 0.75rem 1rem; border: 1px solid var(--lx-border); text-align: left; font-size: 0.9rem; }
.lx-legal th { background: var(--lx-bg-card); color: var(--lx-text-primary); font-weight: 600; }
.lx-legal td { color: var(--lx-text-body); }

/* === SETUP GUIDE === */
.lx-guide-step { background: var(--lx-bg-card); border: 1px solid var(--lx-border); border-radius: var(--lx-radius-lg); padding: 2rem; margin-bottom: 1.5rem; }
.lx-guide-step h3 { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.lx-guide-step h3 .lx-step-num { width: 36px; height: 36px; background: var(--lx-btn-gradient); color: #0A0A0A; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--lx-font-body); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.lx-guide-img { border-radius: var(--lx-radius-md); margin: 1rem 0; }

/* === TWO COLUMN LAYOUT === */
.lx-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

/* === RESELLER === */
.lx-reseller-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.lx-tier-card { background: var(--lx-bg-card); border: 1px solid var(--lx-border); border-radius: var(--lx-radius-lg); padding: 2rem; text-align: center; }
.lx-tier-card h3 { color: var(--lx-gold); margin-bottom: 0.5rem; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .lx-footer-grid { grid-template-columns: 1fr 1fr; }
  .lx-two-col { grid-template-columns: 1fr; }
  .lx-trial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .lx-nav { display: none; position: absolute; top: var(--lx-header-h); left: 0; right: 0; background: var(--lx-bg-nav); border-bottom: 1px solid var(--lx-border); flex-direction: column; padding: 1rem 1.5rem; gap: 0.75rem; }
  .lx-nav.open { display: flex; }
  .lx-hamburger { display: flex; }
  .lx-hero .lx-container { flex-direction: column; text-align: center; }
  .lx-hero-content p { margin-left: auto; margin-right: auto; }
  .lx-hero-btns { justify-content: center; }
  .lx-hero-img { text-align: center; }
  .lx-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lx-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .lx-feature-list { grid-template-columns: 1fr; }
  .lx-footer-grid { grid-template-columns: 1fr; }
  .lx-section { padding: 3rem 0; }
}
@media (max-width: 480px) {
  .lx-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .lx-stat-item h3 { font-size: 1.6rem; }
  .lx-top-bar .lx-container { flex-direction: column; text-align: center; }
}
