/* ═══════════════════════════════════════════════════════════════
   V1RON THEME — theme.css v1.0.0
   Consistent with V1RON Studio dark palette
   ═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* ─── Design Tokens ──────────────────────────────────────────── */
:root {
  --v1-bg:        #0a0a10;
  --v1-surface:   #12121c;
  --v1-surface2:  #1a1a28;
  --v1-border:    rgba(255,255,255,.07);
  --v1-gold:      #c9a84c;
  --v1-gold-lt:   #e4c97e;
  --v1-teal:      #7fe4d8;
  --v1-purple:    #7c3aed;
  --v1-text:      #f0ece4;
  --v1-text-sub:  #94a3b8;
  --v1-radius:    12px;
  --v1-shadow:    0 8px 40px rgba(0,0,0,.6);
  --hf:           'Bebas Neue', sans-serif;
  --bf:           'DM Sans', -apple-system, sans-serif;
}

/* ─── Base Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--v1-bg);
  color: var(--v1-text);
  font-family: var(--bf);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; }

/* ─── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--v1-bg); }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 2px; }

/* ═══════════════════════════════════════════════════════════════
   LAYOUT UTILITIES
   ═══════════════════════════════════════════════════════════════ */
.v1ron-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media(max-width:768px){ .v1ron-container{ padding: 0 20px; } }

.v1ron-section {
  padding: 120px 0;
  position: relative;
}
@media(max-width:768px){ .v1ron-section{ padding: 80px 0; } }

.v1ron-section-header {
  text-align: center;
  margin-bottom: 64px;
}
.v1ron-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--v1-gold);
  display: block;
  margin-bottom: 12px;
}
.v1ron-section-title {
  font-family: var(--hf);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 2px;
  line-height: 1.05;
  color: var(--v1-text);
}
.v1ron-section-sub {
  color: var(--v1-text-sub);
  font-size: 17px;
  max-width: 600px;
  margin: 16px auto 0;
}
.v1ron-section-body {
  color: var(--v1-text-sub);
  font-size: 16px;
  line-height: 1.75;
  max-width: 640px;
}
.v1ron-section-body-center { margin: 0 auto; text-align: center; }
.v1ron-section-cta { text-align: center; margin-top: 48px; }

/* Split layout */
.v1ron-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.v1ron-split-reverse { direction: rtl; }
.v1ron-split-reverse > * { direction: ltr; }
@media(max-width:900px){
  .v1ron-split, .v1ron-split-reverse { grid-template-columns: 1fr; direction: ltr; gap: 48px; }
}
.v1ron-split-img {
  width: 100%; border-radius: var(--v1-radius);
  border: 1px solid var(--v1-border);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.v1ron-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all .25s ease;
  white-space: nowrap;
}
.v1ron-btn-gold {
  background: var(--v1-gold);
  color: #0a0a10;
  border: 1px solid var(--v1-gold);
}
.v1ron-btn-gold:hover {
  background: var(--v1-gold-lt);
  border-color: var(--v1-gold-lt);
  box-shadow: 0 0 24px rgba(201,168,76,.4);
}
.v1ron-btn-teal {
  background: transparent;
  color: var(--v1-teal);
  border: 1px solid var(--v1-teal);
}
.v1ron-btn-teal:hover {
  background: var(--v1-teal);
  color: #0a0a10;
  box-shadow: 0 0 24px rgba(127,228,216,.3);
}
.v1ron-btn-outline {
  background: transparent;
  color: var(--v1-text);
  border: 1px solid rgba(255,255,255,.2);
}
.v1ron-btn-outline:hover {
  border-color: var(--v1-gold);
  color: var(--v1-gold);
}
.v1ron-btn-ghost {
  background: transparent;
  color: var(--v1-text-sub);
  border: 1px solid transparent;
  padding: 14px 20px;
}
.v1ron-btn-ghost:hover { color: var(--v1-gold); }
.v1ron-btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.v1ron-hp-header, .v1ron-inner-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  height: 72px;
  background: rgba(10,10,16,.96);
  border-bottom: 1px solid var(--v1-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.v1ron-hp-header-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media(max-width:768px){ .v1ron-hp-header-inner{ padding: 0 20px; } }

.v1ron-hp-logo { display: flex; align-items: center; }
.v1ron-hp-logo-img { height: 36px; width: auto; }
/* If WP custom logo is active */
.v1ron-hp-logo .custom-logo-link img { height: 36px; width: auto; }

.v1ron-hp-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.v1ron-nav-btn {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 0;
  transition: all .2s;
  border: 1px solid transparent;
}
.v1ron-nav-btn-gold {
  background: var(--v1-gold);
  color: #0a0a10;
  border-color: var(--v1-gold);
}
.v1ron-nav-btn-gold:hover { background: var(--v1-gold-lt); }
.v1ron-nav-btn-outline {
  background: transparent;
  color: var(--v1-text);
  border-color: rgba(255,255,255,.2);
}
.v1ron-nav-btn-outline:hover { border-color: var(--v1-gold); color: var(--v1-gold); }
.v1ron-nav-btn-ghost { color: var(--v1-text-sub); }
.v1ron-nav-btn-ghost:hover { color: var(--v1-text); }

/* Username Dropdown */
.v1ron-user-dropdown { position: relative; }
.v1ron-user-dropdown-trigger {
  cursor: pointer;
  background: none;
  border: none;
  white-space: nowrap;
}
.v1ron-user-dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 180px;
  background: rgba(10,10,16,.97);
  border: 1px solid var(--v1-border);
  padding: 6px 0;
  z-index: 1000;
}
.v1ron-user-dropdown-menu.open { display: block; }
.v1ron-user-dropdown-item {
  display: block;
  width: 100%;
  text-align: left;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--v1-text-sub);
  padding: 10px 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color .2s, background .2s;
}
.v1ron-user-dropdown-item:hover {
  color: var(--v1-gold);
  background: rgba(201,168,76,.06);
}

/* Hamburger */
.v1ron-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
.v1ron-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--v1-text);
  transition: .3s;
}
@media(max-width:768px){
  .v1ron-hamburger { display: flex; }
  .v1ron-hp-nav { display: none; }
  .v1ron-hp-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(10,10,16,.97);
    border-bottom: 1px solid var(--v1-border);
    padding: 20px;
    gap: 8px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HERO SLIDESHOW
   ═══════════════════════════════════════════════════════════════ */
.v1ron-hero {
  padding: 0;
  margin-top: 72px;
  position: relative;
  height: calc(100vh - 72px);
  min-height: 500px;
  overflow: hidden;
}
.v1ron-slideshow {
  width: 100%; height: 100%;
  position: relative;
}
.v1ron-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.v1ron-slide.active { opacity: 1; z-index: 1; }

.v1ron-slide-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.v1ron-slide-placeholder {
  background: linear-gradient(135deg, #0a0a10 0%, #1a1a28 50%, #0e0e1a 100%);
}
.v1ron-slide-video {
  width: 100%; height: 100%;
  object-fit: cover;
  border: none;
}
.v1ron-slide-caption {
  position: absolute;
  bottom: 80px; left: 0; right: 0;
  text-align: center;
  z-index: 2;
  padding: 0 40px;
}
.v1ron-slide-caption h2 {
  font-family: var(--hf);
  font-size: clamp(32px, 6vw, 80px);
  letter-spacing: 4px;
  text-shadow: 0 4px 32px rgba(0,0,0,.8);
  color: var(--v1-text);
}
.v1ron-slideshow-dots {
  position: absolute;
  bottom: 28px;
  left: 50%; transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.v1ron-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  background: transparent;
  transition: all .3s;
  padding: 0;
}
.v1ron-dot.active {
  background: var(--v1-gold);
  border-color: var(--v1-gold);
  transform: scale(1.3);
}
.v1ron-slide-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,.4);
  color: var(--v1-text);
  border: 1px solid var(--v1-border);
  width: 48px; height: 48px;
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
  backdrop-filter: blur(8px);
}
.v1ron-slide-arrow:hover { background: var(--v1-gold); color: #0a0a10; border-color: var(--v1-gold); }
.v1ron-slide-prev { left: 24px; }
.v1ron-slide-next { right: 24px; }

/* ── Slideshow Progress Bar ──────────────────────────────────────────────── */
.v1ron-slide-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.12);
  z-index: 10;
}
.v1ron-slide-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--v1-gold, #c9a84c);
  transition: none;
  will-change: width;
}

/* ── Play / Pause Button ─────────────────────────────────────────────────── */
.v1ron-slide-playpause {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  width: 36px; height: 36px;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s;
  padding: 0;
  line-height: 1;
}
.v1ron-slide-playpause:hover {
  background: var(--v1-gold, #c9a84c);
  border-color: var(--v1-gold, #c9a84c);
  color: #0a0a10;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════ */
.v1ron-about { background: var(--v1-surface); }

.v1ron-hex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.v1ron-hex-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background: var(--v1-surface2);
  border: 1px solid rgba(201,168,76,.15);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--v1-gold);
  text-transform: uppercase;
  transition: all .3s;
}
.v1ron-hex-grid span:hover {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 0 20px rgba(201,168,76,.1);
}

/* ═══════════════════════════════════════════════════════════════
   CHARACTERS SECTION
   ═══════════════════════════════════════════════════════════════ */
.v1ron-characters { background: var(--v1-bg); }

.v1ron-char-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.v1ron-pulse-ring {
  position: absolute;
  width: 260px; height: 260px;
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 50%;
  animation: v1ron-pulse 3s ease-in-out infinite;
}
@keyframes v1ron-pulse {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.08); opacity: 1; }
}
.v1ron-char-brain {
  width: 220px; height: 220px;
  background: var(--v1-surface);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 32px;
  gap: 8px;
  position: relative; z-index: 1;
}
.v1ron-brain-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--v1-gold);
  text-transform: uppercase;
}
.v1ron-brain-nodes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.v1ron-brain-nodes span {
  font-size: 10px;
  padding: 3px 8px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  color: var(--v1-gold-lt);
  border-radius: 20px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   USERS SECTION
   ═══════════════════════════════════════════════════════════════ */
.v1ron-users { background: var(--v1-surface); }

.v1ron-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media(max-width:900px){ .v1ron-feature-grid{ grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px){ .v1ron-feature-grid{ grid-template-columns: 1fr; } }

.v1ron-feature-card {
  background: var(--v1-surface2);
  border: 1px solid var(--v1-border);
  padding: 32px 24px;
  transition: all .3s;
}
.v1ron-feature-card:hover {
  border-color: rgba(201,168,76,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  transform: translateY(-4px);
}
.v1ron-feature-icon { font-size: 32px; margin-bottom: 16px; }
.v1ron-feature-card h3 {
  font-family: var(--hf);
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--v1-text);
}
.v1ron-feature-card p { color: var(--v1-text-sub); font-size: 14px; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   CREATORS SECTION
   ═══════════════════════════════════════════════════════════════ */
.v1ron-creators { background: var(--v1-bg); }

.v1ron-creators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
@media(max-width:900px){ .v1ron-creators-grid{ grid-template-columns: 1fr; } }

.v1ron-creator-category {
  background: var(--v1-surface);
  border: 1px solid var(--v1-border);
  border-top: 2px solid var(--v1-gold);
  padding: 36px 28px;
  transition: all .3s;
}
.v1ron-creator-category:hover {
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.v1ron-creator-icon { font-size: 36px; margin-bottom: 20px; }
.v1ron-creator-category h3 {
  font-family: var(--hf);
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--v1-text);
}
.v1ron-creator-category ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v1ron-creator-category ul li {
  color: var(--v1-text-sub);
  font-size: 14px;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.v1ron-creator-category ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--v1-gold);
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   OWNERS SECTION
   ═══════════════════════════════════════════════════════════════ */
.v1ron-owners { background: var(--v1-surface); }

.v1ron-owner-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0 40px;
}
.v1ron-owner-stat { display: flex; flex-direction: column; gap: 4px; }
.v1ron-stat-num {
  font-family: var(--hf);
  font-size: 40px;
  color: var(--v1-gold);
  line-height: 1;
}
.v1ron-stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--v1-text-sub);
}

.v1ron-ownership-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  gap: 32px;
}
.v1ron-coin-ring {
  position: relative;
  width: 200px; height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.v1ron-coin {
  font-size: 72px;
  color: var(--v1-gold);
  text-shadow: 0 0 40px rgba(201,168,76,.4);
  animation: v1ron-spin 20s linear infinite;
  line-height: 1;
}
@keyframes v1ron-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.v1ron-coin-orbit {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(201,168,76,.2);
  border-radius: 50%;
  animation: v1ron-spin 15s linear infinite reverse;
}
.v1ron-ownership-tagline {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--v1-gold);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   FEEDS SECTION
   ═══════════════════════════════════════════════════════════════ */
.v1ron-feeds { background: var(--v1-bg); }

.v1ron-feeds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media(max-width:900px){ .v1ron-feeds-grid{ grid-template-columns: 1fr; } }

.v1ron-feed-label {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--v1-gold);
  margin-bottom: 20px;
}
.v1ron-yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.v1ron-yt-item {
  background: var(--v1-surface);
  border: 1px solid var(--v1-border);
  border-radius: 4px;
  overflow: hidden;
  transition: all .3s;
  cursor: pointer;
}
.v1ron-yt-item:hover { border-color: rgba(201,168,76,.3); transform: scale(1.02); }
.v1ron-yt-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.v1ron-yt-title {
  padding: 8px;
  font-size: 11px;
  color: var(--v1-text-sub);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v1ron-feed-loading, .v1ron-feed-error {
  color: var(--v1-text-sub);
  font-size: 13px;
  font-family: 'Space Mono', monospace;
  padding: 40px 0;
}
.v1ron-feed-more {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--v1-gold);
  text-transform: uppercase;
}
.v1ron-tiktok-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  gap: 16px;
  background: var(--v1-surface);
  border: 1px dashed rgba(255,255,255,.1);
}
.v1ron-tiktok-icon { font-size: 48px; }
.v1ron-tiktok-placeholder p { color: var(--v1-text-sub); text-align: center; font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════
   TOP CHARACTERS CAROUSEL
   ═══════════════════════════════════════════════════════════════ */
.v1ron-top-chars { background: var(--v1-surface); }

.v1ron-char-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.v1ron-char-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 12px;
}
.v1ron-char-carousel::-webkit-scrollbar { display: none; }

.v1ron-char-card {
  flex: 0 0 200px;
  background: var(--v1-surface2);
  border: 1px solid var(--v1-border);
  padding: 24px 16px;
  text-align: center;
  transition: all .3s;
}
.v1ron-char-card:hover {
  border-color: rgba(201,168,76,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  transform: translateY(-4px);
}
.v1ron-char-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 2px solid rgba(201,168,76,.3);
  box-shadow: 0 0 20px rgba(201,168,76,.1);
}
.v1ron-char-avatar-ph {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--v1-surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 12px;
  border: 2px solid rgba(201,168,76,.15);
}
.v1ron-char-name {
  font-family: var(--hf);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--v1-gold-lt);
  margin-bottom: 6px;
}
.v1ron-char-bio {
  font-size: 11px;
  color: var(--v1-text-sub);
  line-height: 1.5;
}
/* v1.1.4 — tagline replaces bio summary in the character card */
.v1ron-char-tagline {
  font-size: 11px;
  color: var(--v1-text-sub);
  line-height: 1.5;
  font-style: italic;
  opacity: .85;
}
.v1ron-char-fame {
  margin-top: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(201,168,76,.6);
  letter-spacing: 1px;
}
/* v1.1.4 — View Profile button */
.v1ron-char-profile-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--v1-gold);
  border: 1px solid rgba(201,168,76,.45);
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.v1ron-char-profile-btn:hover {
  background: var(--v1-gold);
  color: #000;
  border-color: var(--v1-gold);
}
.v1ron-char-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 200px;
  gap: 16px;
  color: var(--v1-text-sub);
}
.v1ron-spinner {
  width: 32px; height: 32px;
  border: 2px solid var(--v1-border);
  border-top-color: var(--v1-gold);
  border-radius: 50%;
  animation: v1ron-spin-fast .8s linear infinite;
}
@keyframes v1ron-spin-fast { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.v1ron-carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(10,10,16,.8);
  border: 1px solid var(--v1-border);
  color: var(--v1-text);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  z-index: 2;
  transition: all .25s;
  backdrop-filter: blur(8px);
}
.v1ron-carousel-btn:hover { background: var(--v1-gold); color: #0a0a10; border-color: var(--v1-gold); }
.v1ron-carousel-prev { left: -20px; }
.v1ron-carousel-next { right: -20px; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════ */
.v1ron-contact { background: var(--v1-bg); }
.v1ron-contact-inner { max-width: 800px; }

.v1ron-contact-email {
  margin-top: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 15px;
}
.v1ron-contact-email a { color: var(--v1-gold); }
.v1ron-contact-email a:hover { text-decoration: underline; }

.v1ron-contact-form-wrap { margin-top: 48px; }
.v1ron-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media(max-width:600px){ .v1ron-form-row{ grid-template-columns: 1fr; } }
.v1ron-form-group { margin-bottom: 20px; }
.v1ron-form-group label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--v1-text-sub);
  margin-bottom: 8px;
}
.v1ron-form-group input,
.v1ron-form-group textarea {
  width: 100%;
  background: var(--v1-surface);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--v1-text);
  padding: 12px 16px;
  font-family: var(--bf);
  font-size: 15px;
  border-radius: 0;
  transition: border-color .25s;
}
.v1ron-form-group input:focus,
.v1ron-form-group textarea:focus {
  outline: none;
  border-color: var(--v1-gold);
  box-shadow: 0 0 0 1px rgba(201,168,76,.2);
}
.v1ron-form-group textarea { resize: vertical; min-height: 140px; }

.h-captcha { margin-bottom: 20px; }

.v1ron-contact-status {
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 1px;
  border-radius: 0;
}
.v1ron-contact-status.success { background: rgba(0,255,65,.08); border: 1px solid rgba(0,255,65,.3); color: #00ff41; }
.v1ron-contact-status.error   { background: rgba(255,65,65,.08); border: 1px solid rgba(255,65,65,.3); color: #ff4141; }

/* ═══════════════════════════════════════════════════════════════
   NEWS SECTION (Homepage)
   ═══════════════════════════════════════════════════════════════ */
.v1ron-news { background: var(--v1-surface); }

.v1ron-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.v1ron-news-card {
  background: var(--v1-surface2);
  border: 1px solid var(--v1-border);
  overflow: hidden;
  transition: all .3s;
}
.v1ron-news-card:hover { border-color: rgba(201,168,76,.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.v1ron-news-thumb-link { display: block; overflow: hidden; }
.v1ron-news-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .4s; }
.v1ron-news-card:hover .v1ron-news-thumb { transform: scale(1.04); }
.v1ron-news-content { padding: 24px; }
.v1ron-news-meta { font-size: 12px; color: var(--v1-text-sub); margin-bottom: 10px; }
.v1ron-cat-badge {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  color: var(--v1-gold);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Space Mono', monospace;
}
.v1ron-news-title {
  font-family: var(--hf);
  font-size: 22px;
  letter-spacing: .5px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.v1ron-news-title a { color: var(--v1-text); }
.v1ron-news-title a:hover { color: var(--v1-gold); }
.v1ron-news-excerpt { color: var(--v1-text-sub); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.v1ron-news-link {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--v1-gold);
  text-transform: uppercase;
}
.v1ron-news-link:hover { color: var(--v1-gold-lt); }
.v1ron-no-posts { color: var(--v1-text-sub); text-align: center; padding: 40px 0; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.v1ron-footer {
  background: #050508;
  border-top: 1px solid var(--v1-border);
  padding: 60px 0 40px;
}
.v1ron-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.v1ron-footer-logo-img { height: 40px; width: auto; opacity: .8; }
.v1ron-footer .custom-logo-link img { height: 40px; }
.v1ron-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
}
.v1ron-footer-nav a {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--v1-text-sub);
  transition: color .2s;
}
.v1ron-footer-nav a:hover { color: var(--v1-gold); }
.v1ron-footer-copy {
  font-size: 12px;
  color: rgba(148,163,184,.4);
  text-align: center;
  font-family: 'Space Mono', monospace;
}

/* ═══════════════════════════════════════════════════════════════
   LOGOUT MODAL
   ═══════════════════════════════════════════════════════════════ */
.v1ron-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.v1ron-modal-overlay.active {
  display: flex;
}
.v1ron-modal {
  background: var(--v1-surface);
  border: 1px solid rgba(201,168,76,.3);
  box-shadow: 0 0 60px rgba(201,168,76,.1), var(--v1-shadow);
  padding: 48px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  animation: v1ron-modal-in .3s ease;
}
@keyframes v1ron-modal-in { from { opacity:0; transform:scale(.95); } to { opacity:1; transform:scale(1); } }
.v1ron-modal-icon { font-size: 48px; color: var(--v1-gold); margin-bottom: 20px; line-height: 1; }
.v1ron-modal h2 {
  font-family: var(--hf);
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--v1-text);
}
.v1ron-modal p { color: var(--v1-text-sub); font-size: 15px; margin-bottom: 32px; }
.v1ron-modal-actions { display: flex; gap: 12px; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════════ */
.v1ron-scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.v1ron-scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   INNER PAGE STYLES (Blog, Single)
   ═══════════════════════════════════════════════════════════════ */
.v1ron-inner-main {
  padding-top: 72px;
  min-height: calc(100vh - 72px);
}
.v1ron-post-wrap { max-width: 800px; padding: 80px 40px; }
.v1ron-article-header { margin-bottom: 40px; }
.v1ron-article-cats { margin-bottom: 16px; }
.v1ron-article-title {
  font-family: var(--hf);
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 1px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.v1ron-article-meta { color: var(--v1-text-sub); font-size: 13px; display: flex; gap: 8px; flex-wrap: wrap; }
.v1ron-article-hero { margin-bottom: 48px; }
.v1ron-article-hero-img { width: 100%; border-radius: 4px; }
.v1ron-article-body {
  color: var(--v1-text);
  font-size: 17px;
  line-height: 1.8;
}
.v1ron-article-body h2, .v1ron-article-body h3 {
  font-family: var(--hf);
  color: var(--v1-gold-lt);
  margin: 32px 0 16px;
  letter-spacing: 1px;
}
.v1ron-article-body h2 { font-size: 36px; }
.v1ron-article-body h3 { font-size: 28px; }
.v1ron-article-body p { margin-bottom: 20px; }
.v1ron-article-body a { color: var(--v1-gold); }
.v1ron-article-body ul, .v1ron-article-body ol { padding-left: 24px; margin-bottom: 20px; }
.v1ron-article-body li { margin-bottom: 8px; color: var(--v1-text-sub); }
.v1ron-article-body blockquote {
  border-left: 3px solid var(--v1-gold);
  padding-left: 24px;
  color: var(--v1-text-sub);
  font-style: italic;
  margin: 32px 0;
}
.v1ron-article-body img { width: 100%; border-radius: 4px; margin: 24px 0; }
.v1ron-article-footer { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--v1-border); }

/* News page */
.v1ron-news-page { padding: 80px 40px; }
.v1ron-news-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}
.v1ron-page-title {
  font-family: var(--hf);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 2px;
  color: var(--v1-text);
}
.v1ron-news-search { display: flex; }
.v1ron-search-input {
  background: var(--v1-surface);
  border: 1px solid var(--v1-border);
  color: var(--v1-text);
  padding: 10px 16px;
  font-family: var(--bf);
  font-size: 14px;
  width: 260px;
  border-right: none;
}
.v1ron-search-input:focus { outline: none; border-color: var(--v1-gold); }
.v1ron-search-btn {
  background: var(--v1-gold);
  border: 1px solid var(--v1-gold);
  color: #0a0a10;
  padding: 10px 16px;
  display: flex; align-items: center;
  transition: background .2s;
}
.v1ron-search-btn:hover { background: var(--v1-gold-lt); }

.v1ron-news-infinite { display: flex; flex-direction: column; gap: 32px; }
.v1ron-news-card-full { display: grid; grid-template-columns: 280px 1fr; gap: 0; }
@media(max-width:700px){ .v1ron-news-card-full{ grid-template-columns: 1fr; } }
.v1ron-news-card-full .v1ron-news-thumb { height: 100%; min-height: 180px; border-radius: 0; aspect-ratio: unset; }
.v1ron-news-card-full .v1ron-news-content { padding: 28px 32px; }
.v1ron-news-card-full .v1ron-news-title { font-size: 26px; }

.v1ron-load-more-trigger { text-align: center; padding: 48px 0; }

/* Admin */
.v1ron-hp-body { margin-top: 0 !important; }

/* ─────────────────────────────────────────────────────────────────────────────
   v1.0.5 ADDITIONS
   ─────────────────────────────────────────────────────────────────────────── */

/* ── Social Feeds ─────────────────────────────────────────────────── */
.v1ron-feed-platform-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,168,76,.25);
}
.v1ron-feed-icon {
    font-size: 22px;
}
.v1ron-social-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.v1ron-social-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    color: #e0e0e0;
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .15s;
    font-size: 14px;
    line-height: 1.4;
}
.v1ron-social-link-item:hover {
    background: rgba(201,168,76,.1);
    border-color: rgba(201,168,76,.4);
    transform: translateX(4px);
}
.v1ron-yt-item:hover  { border-color: rgba(255,0,0,.4); background: rgba(255,0,0,.06); }
.v1ron-tt-item:hover  { border-color: rgba(127,228,216,.4); background: rgba(127,228,216,.06); }
.v1ron-social-link-play { flex-shrink: 0; opacity:.7; }
.v1ron-social-link-text { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v1ron-social-link-arrow { flex-shrink: 0; opacity:.4; font-size: 16px; }

/* ── Social Thumbnail Cards ──────────────────────────────────────────────── */
.v1ron-social-thumb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}
.v1ron-social-thumb-card {
    display: block;
    text-decoration: none;
    color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    transition: transform .2s, border-color .2s, box-shadow .2s;
}
.v1ron-social-thumb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
.v1ron-yt-card:hover  { border-color: rgba(255,0,0,.5); }
.v1ron-tt-card:hover  { border-color: rgba(127,228,216,.5); }
.v1ron-thumb-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: #111;
    overflow: hidden;
}
.v1ron-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.v1ron-social-thumb-card:hover .v1ron-thumb-img { transform: scale(1.05); }
.v1ron-thumb-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: rgba(255,255,255,.04);
}
.v1ron-yt-placeholder  { color: #ff0000; }
.v1ron-tt-placeholder  { color: var(--v1-teal, #7fe4d8); }
.v1ron-thumb-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.35);
    opacity: 0;
    transition: opacity .2s;
}
.v1ron-social-thumb-card:hover .v1ron-thumb-play-overlay { opacity: 1; }
.v1ron-play-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,.9);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding-left: 3px;
}
.v1ron-thumb-label {
    font-size: 12px;
    padding: 8px 10px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: .85;
}
@media(max-width:600px) {
    .v1ron-social-thumb-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── WordPress Menu in Header ───────────────────────────────────────────── */
.v1ron-hp-nav .v1ron-wp-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0; padding: 0;
}
.v1ron-hp-nav .v1ron-wp-menu li { position: relative; }
.v1ron-hp-nav .v1ron-wp-menu a {
    display: block;
    padding: 8px 14px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .04em;
    border-radius: 6px;
    transition: color .2s, background .2s;
}
.v1ron-hp-nav .v1ron-wp-menu a:hover { color: var(--v1-gold,#c9a84c); background: rgba(201,168,76,.08); }
.v1ron-hp-nav .v1ron-wp-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    min-width: 180px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    padding: 6px 0;
    list-style: none;
    z-index: 200;
}
.v1ron-hp-nav .v1ron-wp-menu li:hover > .sub-menu { display: block; }
.v1ron-hp-nav .v1ron-wp-menu .sub-menu a { padding: 9px 16px; border-radius: 0; font-size: 13px; }

/* ── WordPress Menu in Footer ────────────────────────────────────────────── */
.v1ron-footer-nav .v1ron-footer-wp-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    list-style: none;
    margin: 0; padding: 0;
    justify-content: center;
}
.v1ron-footer-nav .v1ron-footer-wp-menu a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s;
}
.v1ron-footer-nav .v1ron-footer-wp-menu a:hover { color: var(--v1-gold,#c9a84c); }
.v1ron-social-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    cursor: pointer;
    margin-top: 6px;
}
.v1ron-yt-subscribe-btn {
    background: #ff0000;
    color: #fff;
    border: 2px solid #ff0000;
}
.v1ron-yt-subscribe-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
}
.v1ron-tt-follow-btn {
    background: var(--v1-teal, #7fe4d8);
    color: #000;
    border: 2px solid var(--v1-teal, #7fe4d8);
}
.v1ron-tt-follow-btn:hover {
    background: #5ecfc3;
    transform: translateY(-2px);
}
.v1ron-feed-placeholder {
    color: #666;
    font-size: 13px;
    padding: 20px;
    border: 1px dashed #333;
    border-radius: 8px;
    margin-bottom: 16px;
}
.v1ron-feed-placeholder strong { color: #888; }

/* ── Legal Pages (Terms, Privacy) ─────────────────────────────────── */
.v1ron-legal-main {
    padding: 60px 0 80px;
    min-height: 70vh;
}
.v1ron-legal-wrap {
    max-width: 780px;
    margin: 0 auto;
}
.v1ron-legal-header {
    margin-bottom: 40px;
}
.v1ron-legal-title {
    font-family: var(--hf, 'Bebas Neue', sans-serif);
    font-size: clamp(36px, 5vw, 60px);
    color: var(--v1-gold, #c9a84c);
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.v1ron-legal-updated {
    color: #666;
    font-size: 13px;
    margin-bottom: 24px;
}
.v1ron-legal-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--v1-gold,#c9a84c), transparent);
    border-radius: 1px;
}
.v1ron-legal-content {
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
}
.v1ron-legal-content h1,
.v1ron-legal-content h2,
.v1ron-legal-content h3 {
    color: #fff;
    font-family: var(--hf, 'Bebas Neue', sans-serif);
    margin-top: 36px;
    margin-bottom: 12px;
    letter-spacing: .5px;
}
.v1ron-legal-content h2 { font-size: 24px; }
.v1ron-legal-content h3 { font-size: 18px; color: var(--v1-gold, #c9a84c); }
.v1ron-legal-content p  { margin-bottom: 16px; }
.v1ron-legal-content a  { color: var(--v1-gold, #c9a84c); }
.v1ron-legal-content ul,
.v1ron-legal-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}
.v1ron-legal-content li { margin-bottom: 8px; }
.v1ron-legal-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
}

/* ── News Page (page-news.php template) ───────────────────────────── */
.v1ron-news-main { padding: 60px 0 80px; }

.v1ron-news-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.v1ron-news-page-title-wrap { flex: 1; min-width: 200px; }
.v1ron-news-page-desc {
    color: #999;
    font-size: 15px;
    margin-top: 8px;
    max-width: 560px;
}

/* Category filter bar */
.v1ron-news-cats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}
.v1ron-cat-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    color: #aaa;
    font-size: 13px;
    text-decoration: none;
    transition: all .2s;
    background: rgba(255,255,255,.03);
}
.v1ron-cat-filter-btn:hover,
.v1ron-cat-filter-btn.active {
    background: var(--v1-gold, #c9a84c);
    border-color: var(--v1-gold, #c9a84c);
    color: #000;
}
.v1ron-cat-count {
    background: rgba(255,255,255,.15);
    border-radius: 10px;
    padding: 1px 7px;
    font-size: 11px;
}
.v1ron-cat-filter-btn.active .v1ron-cat-count,
.v1ron-cat-filter-btn:hover .v1ron-cat-count {
    background: rgba(0,0,0,.2);
}

/* Headline / Featured post */
.v1ron-news-headline {
    margin-bottom: 48px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,.2);
}
.v1ron-headline-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.v1ron-headline-thumb { position: relative; aspect-ratio: 16/7; overflow: hidden; }
.v1ron-headline-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.v1ron-headline-link:hover .v1ron-headline-img { transform: scale(1.03); }
.v1ron-headline-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,.85));
}
.v1ron-headline-body {
    padding: 28px 32px;
    background: rgba(10,10,10,.95);
}
.v1ron-cat-badge-hl {
    background: var(--v1-gold, #c9a84c);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}
.v1ron-headline-title {
    font-family: var(--hf, 'Bebas Neue', sans-serif);
    font-size: clamp(24px, 3.5vw, 42px);
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: .5px;
}
.v1ron-headline-excerpt {
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 640px;
}
.v1ron-headline-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #666;
    font-size: 13px;
}
.v1ron-read-link {
    color: var(--v1-gold, #c9a84c);
    font-weight: 600;
}

/* News grid layouts */
.v1ron-news-grid { margin-bottom: 40px; }

.v1ron-news-grid-layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.v1ron-news-grid-layout-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.v1ron-news-grid-layout-list .v1ron-news-card {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.v1ron-news-grid-layout-list .v1ron-news-thumb-link {
    flex-shrink: 0;
    width: 220px;
}
.v1ron-news-grid-layout-magazine {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.v1ron-news-grid-layout-magazine .v1ron-news-card:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

/* News card (shared) */
.v1ron-news-card {
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .25s, transform .25s;
}
.v1ron-news-card:hover {
    border-color: rgba(201,168,76,.3);
    transform: translateY(-4px);
}
.v1ron-news-thumb-link { display: block; overflow: hidden; position: relative; }
.v1ron-news-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.v1ron-news-card:hover .v1ron-news-thumb { transform: scale(1.04); }
.v1ron-card-cat-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--v1-gold, #c9a84c);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 3px;
}
.v1ron-news-content { padding: 18px 20px 22px; }
.v1ron-news-meta { font-size: 12px; color: #666; margin-bottom: 8px; }
.v1ron-cat-link { color: var(--v1-gold, #c9a84c); text-decoration: none; }
.v1ron-news-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.35;
}
.v1ron-news-title a { color: #fff; text-decoration: none; }
.v1ron-news-title a:hover { color: var(--v1-gold, #c9a84c); }
.v1ron-news-excerpt { color: #888; font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.v1ron-news-read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--v1-gold, #c9a84c);
    text-decoration: none;
}
.v1ron-news-read-more:hover { text-decoration: underline; }

/* Pagination */
.v1ron-news-pagination {
    text-align: center;
    margin: 16px 0 48px;
}
.v1ron-load-more-btn { min-width: 200px; }

/* Related categories */
.v1ron-news-related-cats {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,.07);
}
.v1ron-related-cats-title {
    font-family: var(--hf, 'Bebas Neue', sans-serif);
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.v1ron-related-cats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.v1ron-related-cat-card {
    display: flex;
    flex-direction: column;
    padding: 14px 22px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    text-decoration: none;
    transition: all .2s;
    min-width: 120px;
}
.v1ron-related-cat-card:hover {
    border-color: var(--v1-gold, #c9a84c);
    background: rgba(201,168,76,.07);
}
.v1ron-related-cat-name { color: #e0e0e0; font-weight: 600; font-size: 14px; }
.v1ron-related-cat-count { color: #666; font-size: 12px; margin-top: 4px; }

@media (max-width: 768px) {
    .v1ron-news-grid-layout-grid    { grid-template-columns: 1fr; }
    .v1ron-news-grid-layout-magazine { grid-template-columns: 1fr; }
    .v1ron-news-grid-layout-magazine .v1ron-news-card:first-child { grid-column: 1; grid-row: auto; }
    .v1ron-news-grid-layout-list .v1ron-news-card { flex-direction: column; }
    .v1ron-news-grid-layout-list .v1ron-news-thumb-link { width: 100%; }
    .v1ron-news-page-header { flex-direction: column; }
    .v1ron-headline-body { padding: 20px; }
}
