/* ==============================================
   AI TOXIC RADAR - CLEAN TEMPLATE
   Multi-Site Ready | Easy Color Customization
   ============================================== */

/* -- Theme Variables (Easy Customization)
:root {
  --theme-bg: #0f1117;
  --theme-bg-secondary: #14171f;
  --theme-surface: #181b23;
  --theme-border: #2c2f36;
  --theme-text: #ffffff;
  --theme-text-dim: #a0a3ad;
  --theme-accent: #2ecc71;
  --theme-accent-hover: #27ae60;
  --theme-content-bg: #ffffff;
  --theme-content-text: #000000;
}  --*/
	
/* 🔵 Professional Blue:
:root {
  --theme-bg: #0a0e1a;
  --theme-bg-secondary: #111827;
  --theme-surface: #1f2937;
  --theme-border: #374151;
  --theme-text: #ffffff;
  --theme-text-dim: #9ca3af;
  --theme-accent: #3b82f6;
  --theme-accent-hover: #2563eb;
  --theme-content-bg: #ffffff;
  --theme-content-text: #000000;
}*/

/* 🟣 Elegant Purple 
:root {
  --theme-bg: #0f0a1a;
  --theme-bg-secondary: #1a1027;
  --theme-surface: #2d1b37;
  --theme-border: #4c2a51;
  --theme-text: #ffffff;
  --theme-text-dim: #a78baf;
  --theme-accent: #8b5cf6;
  --theme-accent-hover: #7c3aed;
  --theme-content-bg: #ffffff;
  --theme-content-text: #000000;
} */

/* Warm Orange  */
:root {
  --theme-bg: #1a1106;
  --theme-bg-secondary: #271a0a;
  --theme-surface: #37291b;
  --theme-border: #51412c;
  --theme-text: #ffffff;
  --theme-text-dim: #afaa8b;
  --theme-accent: #f59e0b;
  --theme-accent-hover: #d97706;
  --theme-content-bg: #ffffff;
  --theme-content-text: #000000;
}

/* ⚪ Clean Light Mode: 
:root {
  --theme-bg: #f8fafc;
  --theme-bg-secondary: #f1f5f9;
  --theme-surface: #ffffff;
  --theme-border: #e2e8f0;
  --theme-text: #1e293b;
  --theme-text-dim: #64748b;
  --theme-accent: #0ea5e9;
  --theme-accent-hover: #0284c7;
  --theme-content-bg: #f8fafc;
  --theme-content-text: #1e293b;
} */

/* 🔴 Modern Red: 
:root {
  --theme-bg: #1a0606;
  --theme-bg-secondary: #270a0a;
  --theme-surface: #371b1b;
  --theme-border: #512c2c;
  --theme-text: #ffffff;
  --theme-text-dim: #af8b8b;
  --theme-accent: #ef4444;
  --theme-accent-hover: #dc2626;
  --theme-content-bg: #ffffff;
  --theme-content-text: #000000;
} */

/* 🔵 Tech Cyan:
:root {
  --theme-bg: #061a1a;
  --theme-bg-secondary: #0a2727;
  --theme-surface: #1b3737;
  --theme-border: #2c5151;
  --theme-text: #ffffff;
  --theme-text-dim: #8bafaf;
  --theme-accent: #06b6d4;
  --theme-accent-hover: #0891b2;
  --theme-content-bg: #ffffff;
  --theme-content-text: #000000;
} */

/* 💗 Soft Pink:
:root {
  --theme-bg: #1a0612;
  --theme-bg-secondary: #270a1a;
  --theme-surface: #371b2d;
  --theme-border: #512c44;
  --theme-text: #ffffff;
  --theme-text-dim: #af8ba3;
  --theme-accent: #ec4899;
  --theme-accent-hover: #db2777;
  --theme-content-bg: #ffffff;
  --theme-content-text: #000000;
} */

/* 🟢 Forest Green: 
:root {
  --theme-bg: #0a1a0a;
  --theme-bg-secondary: #102710;
  --theme-surface: #1b371b;
  --theme-border: #2c512c;
  --theme-text: #ffffff;
  --theme-text-dim: #8baf8b;
  --theme-accent: #22c55e;
  --theme-accent-hover: #16a34a;
  --theme-content-bg: #ffffff;
  --theme-content-text: #000000;
} */




/* ---------- Global Reset ---------- */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--theme-bg);
  color: var(--theme-text);
  line-height: 1.5;
}

/* ---------- Header ---------- */
.site-header {
  text-align: center;
  padding: 16px;
  border-bottom: 1px solid var(--theme-border);
}

.site-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--theme-text);
  margin-bottom: 4px;
}

.site-tagline {
  color: var(--theme-text-dim);
  font-size: 15px;
}

/* ---------- Main Container ---------- */
.main-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
  padding-bottom: 100px; /* Space for sticky footer */
}

/* ---------- Intro Section ---------- */
.intro-section {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--theme-content-bg);
  color: var(--theme-content-text);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.intro-image {
  width: 120px;
  height: auto;
  border-radius: 12px;
  flex-shrink: 0;
}

.intro-text {
  font-size: 15px;
  line-height: 1.5;
}

.intro-text p {
  margin-bottom: 10px;
}

.intro-text strong {
  color: var(--theme-content-text);
}

/* Stack intro on mobile */
@media (max-width: 600px) {
  .intro-section {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .intro-image {
    width: 160px;
    margin-bottom: 12px;
  }
}

/* ---------- Video Grid ---------- */
.video-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-bottom: 30px;
}

@media (min-width: 720px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.video-card {
  display: block;
  background: var(--theme-surface);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--theme-border);
  transition: transform 0.2s ease;
  padding-top: 10px;
}

.video-card:hover {
  transform: translateY(-3px);
}

.video-thumbnail {
  aspect-ratio: 9/16;
  max-width: 300px;
  max-height: 533px;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--theme-border);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card-content {
  padding: 12px;
}

.video-title {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--theme-text);
}

.video-description {
  color: var(--theme-text-dim);
  font-size: 14px;
}

/* ---------- Content Section (Market Analysis, etc.) ---------- */
.content-section {
  background: var(--theme-content-bg);
  color: var(--theme-content-text);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 60px;
  line-height: 1.6;
}

.content-section h2 {
  font-size: 22px;
  margin-bottom: 16px;
  text-align: center;
  font-weight: 700;
  color: var(--theme-content-text);
}

.content-section h3 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--theme-content-text);
  font-weight: 600;
}

.content-section p,
.content-section ul {
  margin-bottom: 12px;
}

.content-section ul {
  padding-left: 20px;
}

.content-section strong {
  color: var(--theme-content-text);
}

/* ---------- Sticky Contact Button ---------- */
.contact-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 8px;
  background: var(--theme-surface);
  border-top: 1px solid var(--theme-border);
  z-index: 1000;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--theme-accent);
  color: #fff;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.contact-button:hover {
  background: var(--theme-accent-hover);
}

.contact-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}

/* ---------- Full Page Layout (Video & Contact Pages) ---------- */
.fullpage {
  min-height: 100vh;
  background: var(--theme-bg-secondary);
  display: flex;
  flex-direction: column;
}

/* ---------- Close Button ---------- */
.close-button {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 8px;
  color: #fff;
  border: 1px solid var(--theme-border);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.close-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.close-button svg {
  display: block;
}

/* ---------- Video Player ---------- */
.video-container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  overflow: hidden;
}

.video-player {
  height: 100vh;
  width: auto;
  max-width: 100vw;
  object-fit: contain;
  display: block;
}

/* ---------- Contact Page ---------- */
.contact-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.contact-card {
  width: 100%;
  max-width: 470px;
  background: var(--theme-surface);
  border: 1px solid var(--theme-border);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}

.contact-profile {
  margin-bottom: 16px;
}

.contact-profile img {
  max-width: 160px;
  height: auto;
  border-radius: 12px;
}

.contact-title {
  font-size: 20px;
  font-weight: 700;
  margin: 12px 0 20px;
  color: var(--theme-text);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: var(--theme-surface);
  border: 1px solid var(--theme-border);
  color: var(--theme-text);
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-link-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-link-label i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.contact-link-info {
  color: var(--theme-text-dim);
  font-size: 14px;
}

/* X/Twitter logo custom styling */
.x-logo {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

/* ---------- Return Home Button (Desktop) ---------- */
.return-home {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 3000;
  background: var(--theme-accent);
  color: white;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  display: none;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.return-home:hover {
  background: var(--theme-accent-hover);
}

@media (min-width: 1024px) {
  .return-home {
    display: inline-flex;
  }
}

/* ---------- Responsive Design ---------- */
@media (max-width: 480px) {
  .main-container {
    padding: 12px;
  }
  
  .intro-section,
  .content-section {
    padding: 16px;
  }
  
  .contact-card {
    margin: 0 10px;
  }
}