/* omegle.black — The Stranger Chat Magazine */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --brand: #E8440A;
  --brand-dark: #C13508;
  --brand-glow: rgba(232, 68, 10, 0.15);
  --bg: #0A0A0A;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --bg-elevated: #1E1E1E;
  --text: #E8E8E8;
  --text-muted: #888888;
  --text-dim: #555555;
  --border: #222222;
  --border-light: #2a2a2a;
  --link: #E8440A;
  --font-brand: 'Courier New', Courier, monospace;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 0px;
  --gap: 16px;
  --max-width: 1200px;
  --content-width: 720px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── HEADER ─── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gap);
  height: 56px; display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: var(--font-brand); font-size: 20px; font-weight: 700; color: var(--text); text-decoration: none; }
.logo:hover { text-decoration: none; }
.logo .dot { color: var(--brand); }

.nav-desktop { display: none; align-items: center; gap: 28px; }
.nav-desktop a { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; text-decoration: none; }
.nav-desktop a:hover { color: var(--text); text-decoration: none; }

.hamburger {
  display: flex; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px; min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); }

.nav-mobile {
  display: none; position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98); z-index: 99; padding: 24px var(--gap); flex-direction: column;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { display: block; padding: 16px 0; font-size: 18px; color: var(--text-muted); border-bottom: 1px solid var(--border); text-decoration: none; }

/* ─── BUTTONS ─── */
.btn-chat {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand); color: #fff; font-size: 13px; font-weight: 600;
  padding: 10px 20px; border: none; cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.5px; transition: background 0.2s;
  min-height: 44px; text-decoration: none;
}
.btn-chat:hover { background: var(--brand-dark); text-decoration: none; }
.btn-chat-sm { font-size: 12px; padding: 8px 16px; min-height: 36px; }

.live-dot {
  display: inline-block; width: 8px; height: 8px; background: #22c55e;
  border-radius: 50%; margin-right: 0; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ─── ARTICLE PAGE ─── */
.breadcrumb { max-width: var(--max-width); margin: 0 auto; padding: 16px var(--gap); font-size: 12px; color: var(--text-dim); }
.breadcrumb a { color: var(--text-muted); }

.article-header { max-width: var(--content-width); margin: 0 auto; padding: 20px var(--gap) 32px; }
.article-category { display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--brand); font-weight: 600; margin-bottom: 16px; }
.article-header h1 { font-family: var(--font-brand); font-size: clamp(26px, 5vw, 42px); line-height: 1.2; font-weight: 700; margin-bottom: 16px; }
.article-subtitle { font-size: clamp(16px, 2.5vw, 19px); color: var(--text-muted); line-height: 1.5; margin-bottom: 20px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--text-dim); padding-top: 16px; border-top: 1px solid var(--border); }

.article-byline { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.article-byline img { width: 40px; height: 40px; object-fit: cover; border: 1px solid var(--border); }
.article-byline .byline-name { font-size: 14px; font-weight: 600; color: var(--text); }
.article-byline .byline-role { font-size: 12px; color: var(--text-dim); }

/* ─── ARTICLE BODY ─── */
.article-body { max-width: var(--content-width); margin: 0 auto; padding: 32px var(--gap) 0; }
.article-body h2 { font-family: var(--font-brand); font-size: 22px; margin: 40px 0 16px; padding-top: 24px; border-top: 1px solid var(--border); line-height: 1.3; }
.article-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.article-body h3 { font-size: 18px; font-weight: 600; margin: 28px 0 12px; line-height: 1.3; }
.article-body p { font-size: 16px; line-height: 1.75; margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 20px; font-size: 16px; line-height: 1.75; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: #fff; }
.article-body blockquote { border-left: 3px solid var(--brand); margin: 24px 0; padding: 16px 20px; background: var(--bg-card); font-style: italic; color: var(--text-muted); }
.article-body a { color: var(--brand); }
.article-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.article-body th { text-align: left; padding: 12px 16px; background: var(--bg-card); border: 1px solid var(--border); font-family: var(--font-brand); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.article-body td { padding: 12px 16px; border: 1px solid var(--border); }
.article-body tr:nth-child(even) td { background: var(--bg-card); }
.article-body figure { margin: 32px 0; }
.article-body figcaption { font-size: 13px; color: var(--text-muted); font-style: italic; margin-top: 8px; padding-left: 12px; border-left: 2px solid var(--brand); }
.article-body img { width: 100%; height: auto; }

/* FAQ schema styling */
.article-body h2 + h3 { margin-top: 16px; }

/* ─── ARTICLE TAGS ─── */
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0; padding-top: 24px; border-top: 1px solid var(--border); max-width: var(--content-width); margin-left: auto; margin-right: auto; padding-left: var(--gap); padding-right: var(--gap); }
.tag { font-size: 12px; padding: 6px 14px; border: 1px solid var(--border); color: var(--text-muted); text-decoration: none; }
.tag:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }

/* ─── RELATED ARTICLES ─── */
.related-section { max-width: var(--content-width); margin: 48px auto 0; padding: 0 var(--gap); }
.related-title { font-family: var(--font-brand); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.related-card { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); text-decoration: none; }
.related-card:hover { opacity: 0.85; text-decoration: none; }
.related-card h3 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; line-height: 1.4; }
.related-card .related-meta { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }

/* ─── COOMEET FLOATING BUTTON ─── */
.coomeet-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  background: linear-gradient(135deg, #004ECF 0%, #0066FF 100%);
  color: #fff; border: none; cursor: pointer;
  padding: 14px 28px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.3px;
  display: flex; align-items: center; gap: 10px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0, 78, 207, 0.35), 0 1px 3px rgba(0,0,0,0.2);
  transition: all 0.25s ease;
  min-height: 48px;
}
.coomeet-float:hover {
  background: linear-gradient(135deg, #003DA6 0%, #0055DD 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 32px rgba(0, 78, 207, 0.5), 0 2px 6px rgba(0,0,0,0.3);
}

/* ─── COOMEET BANNER (between paragraphs) ─── */
.coomeet-banner {
  background: var(--bg-card); border: 1px solid var(--border); border-left: 3px solid #004ECF;
  padding: 16px 20px; margin: 32px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.coomeet-banner-text { font-size: 14px; color: var(--text-muted); }
.coomeet-banner-text strong { color: var(--text); font-size: 15px; display: block; margin-bottom: 2px; }
.coomeet-banner .btn-chat {
  white-space: nowrap; font-size: 12px; padding: 10px 20px; min-height: 36px;
  border-radius: 50px; background: linear-gradient(135deg, #004ECF 0%, #0066FF 100%);
  box-shadow: 0 2px 12px rgba(0, 78, 207, 0.3);
  transition: all 0.2s ease;
}
.coomeet-banner .btn-chat:hover {
  background: linear-gradient(135deg, #003DA6 0%, #0055DD 100%);
  box-shadow: 0 4px 16px rgba(0, 78, 207, 0.45);
}

@media (max-width: 480px) {
  .coomeet-banner { flex-direction: column; text-align: center; }
  .coomeet-float { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; }
}

/* ─── COOMEET OVERLAY ─── */
.coomeet-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200; background: rgba(0,0,0,0.92);
  flex-direction: column; align-items: center; justify-content: center;
}
.coomeet-overlay.active { display: flex; }
.coomeet-overlay-close {
  position: absolute; top: 16px; right: 16px; background: none; border: none;
  color: #fff; font-size: 28px; cursor: pointer; padding: 8px; min-width: 44px; min-height: 44px;
}
.coomeet-overlay-body {
  width: 90%; max-width: 900px; height: 80vh; max-height: 650px;
  background: #000; border: 1px solid var(--border); position: relative;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px;
}
.coomeet-overlay-body .placeholder,
.coomeet-overlay-loading { color: var(--text-dim); font-size: 14px; position: absolute; z-index: 1; }

/* ─── FOOTER ─── */
.site-footer { margin-top: 60px; border-top: 1px solid var(--border); padding: 40px var(--gap); }
.footer-inner { max-width: var(--max-width); margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.footer-brand { font-family: var(--font-brand); font-size: 18px; font-weight: 700; }
.footer-brand .dot { color: var(--brand); }
.footer-tagline { font-size: 13px; color: var(--text-dim); margin-top: 4px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { font-size: 11px; color: var(--text-dim); padding-top: 20px; border-top: 1px solid var(--border); }

/* ─── HOMEPAGE ─── */
.section-header { display: flex; align-items: baseline; justify-content: space-between; padding: 40px 0 20px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.section-title { font-family: var(--font-brand); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }
.section-link { font-size: 12px; color: var(--brand); text-transform: uppercase; letter-spacing: 1px; }

.card-grid { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
.card { background: var(--bg-card); border: 1px solid var(--border); overflow: hidden; transition: border-color 0.2s; display: flex; flex-direction: column; text-decoration: none; }
.card:hover { border-color: var(--border-light); text-decoration: none; }
.card-image { width: 100%; aspect-ratio: 16 / 9; background: var(--bg-elevated); overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.card:hover .card-image img { transform: scale(1.03); }
.card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-family: var(--font-brand); font-size: 17px; line-height: 1.35; margin-bottom: 8px; font-weight: 700; color: var(--text); }
.card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.5; flex: 1; }
.card-meta { margin-top: 12px; font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }

.article-list-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); text-decoration: none; }
.article-list-item:hover { opacity: 0.85; text-decoration: none; }
.article-list-item .list-number { font-family: var(--font-brand); font-size: 28px; color: var(--text-dim); min-width: 40px; line-height: 1; }
.article-list-item .list-content h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 4px; line-height: 1.4; }
.article-list-item .list-meta { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }

/* ─── DESKTOP ─── */
@media (min-width: 768px) {
  .header-inner { height: 64px; }
  .hamburger { display: none; }
  .nav-desktop { display: flex; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
@media (min-width: 1024px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}
