/* ═══════════════════════════════════════════
   GLITCH CATHEDRAL — Design 2
   Webcore Gothic · Corrupted Early Web
   ═══════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --void: #060606;
  --abyss: #0a0a0a;
  --ash: #111111;
  --smoke: #1a1a1a;
  --bone: #d4d4d4;
  --white: #e8e8e8;
  --blood: #ff0040;
  --blood-dark: #8b0020;
  --neon: #00ff41;
  --neon-dim: #00aa2a;
  --spirit: #7b2d8e;
  --spirit-glow: #c9a0ff;
  --cyan: #00ffff;
  --yellow: #ffff00;
  --nav-height: 50px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--bone);
  font-family: 'VT323', monospace;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
}

/* Scanlines */
.scanlines {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9998;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 1px,
    rgba(0, 0, 0, 0.08) 1px,
    rgba(0, 0, 0, 0.08) 2px
  );
}

/* CRT overlay */
.crt-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9997;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
}

/* Glitch background */
#glitch-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.15;
}

/* Glitch text animation */
.glitch-text {
  position: relative;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.glitch-text::before {
  color: var(--cyan);
  z-index: -1;
  animation: glitch1 3s infinite linear;
}

.glitch-text::after {
  color: var(--blood);
  z-index: -2;
  animation: glitch2 3s infinite linear;
}

@keyframes glitch1 {
  0%, 94%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
  95% { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 0); }
  97% { clip-path: inset(70% 0 10% 0); transform: translate(3px, 0); }
}

@keyframes glitch2 {
  0%, 93%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
  94% { clip-path: inset(50% 0 30% 0); transform: translate(3px, 0); }
  96% { clip-path: inset(10% 0 70% 0); transform: translate(-3px, 0); }
}

/* ═══ NAVIGATION ═══ */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 0, 64, 0.2);
  z-index: 1000;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.nav-logo {
  font-family: 'Press Start 2P', cursive;
  font-size: 0.6rem;
  color: var(--blood);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}

.nav-logo:hover {
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan);
}

.nav-links { display: flex; gap: 1.5rem; }

.nav-link {
  font-family: 'VT323', monospace;
  font-size: 0.95rem;
  color: #666;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--neon);
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.5);
}

.nav-link::after {
  content: '_';
  position: absolute;
  right: -8px;
  color: var(--neon);
  opacity: 0;
  animation: blink 1s step-end infinite;
}

.nav-link.active::after { opacity: 1; }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--neon);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(6, 6, 6, 0.95);
  border-bottom: 1px solid rgba(0, 255, 65, 0.2);
  z-index: 999;
  padding: 1rem;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-link {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  color: var(--neon-dim);
  text-decoration: none;
  padding: 0.5rem;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.mobile-link:hover {
  color: var(--neon);
  border-color: rgba(0, 255, 65, 0.2);
  background: rgba(0, 255, 65, 0.05);
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ═══ SECTIONS ═══ */
.section {
  display: none;
  min-height: 100vh;
  padding-top: var(--nav-height);
  position: relative;
  z-index: 1;
}

.section.active { display: block; }

.section-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-cross {
  font-size: 1.5rem;
  color: var(--blood);
  display: block;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 0, 64, 0.5);
}

.section-title {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(0.9rem, 3vw, 1.4rem);
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.section-sub {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  color: var(--neon-dim);
  letter-spacing: 0.05em;
}

.header-line-glitch {
  width: 200px;
  height: 2px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--blood), var(--neon), transparent);
  position: relative;
  overflow: hidden;
}

.header-line-glitch::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50px; height: 100%;
  background: var(--white);
  animation: scanline 3s infinite linear;
}

@keyframes scanline {
  0% { left: -50px; }
  100% { left: 100%; }
}

/* ═══ HERO ═══ */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 0, 64, 0.05) 0%, transparent 60%),
    var(--void);
}

.hero-content { position: relative; z-index: 1; }

.hero-glitch-border {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  padding: 4px;
  border: 2px solid var(--blood);
  animation: borderGlitch 5s infinite;
}

@keyframes borderGlitch {
  0%, 90%, 100% { border-color: var(--blood); transform: translate(0); }
  91% { border-color: var(--cyan); transform: translate(2px, -1px); }
  93% { border-color: var(--blood); transform: translate(-2px, 1px); }
  95% { border-color: var(--yellow); transform: translate(1px, 2px); }
}

.hero-angel-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: brightness(0.8) contrast(1.2) hue-rotate(20deg);
  animation: glitchImg 8s infinite;
}

@keyframes glitchImg {
  0%, 90%, 100% { filter: brightness(0.8) contrast(1.2) hue-rotate(20deg); }
  91% { filter: brightness(1.5) contrast(2) hue-rotate(-20deg); transform: translate(3px, -2px); }
  93% { filter: brightness(0.3) contrast(1) hue-rotate(60deg); transform: translate(-3px, 2px); }
  94% { filter: brightness(0.8) contrast(1.2) hue-rotate(20deg); transform: translate(0); }
}

.hero-eyebrow {
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--neon-dim);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  text-shadow:
    0 0 10px rgba(255, 0, 64, 0.5),
    0 0 20px rgba(255, 0, 64, 0.3);
}

.hero-subtitle {
  font-family: 'VT323', monospace;
  font-size: 1.05rem;
  color: var(--neon-dim);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  text-align: left;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--blood);
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
}

.divider-line-glitch {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--blood), var(--neon), var(--blood));
}

/* Hero stats - hit counter style */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Press Start 2P', cursive;
  font-size: 1.2rem;
  color: var(--neon);
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-family: 'VT323', monospace;
  font-size: 0.8rem;
  color: #555;
  letter-spacing: 0.1em;
}

.hero-gifs {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: -1;
}

.floating-gif {
  position: absolute;
  width: 80px;
  height: 80px;
  object-fit: contain;
  opacity: 0.1;
  filter: hue-rotate(180deg) brightness(0.5);
}

.fg1 { top: 20%; right: 10%; animation: floatGlitch 6s ease-in-out infinite; }
.fg2 { bottom: 20%; left: 10%; animation: floatGlitch 8s ease-in-out infinite reverse; }

@keyframes floatGlitch {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(5px, -10px); }
  50% { transform: translate(-3px, 5px); }
  75% { transform: translate(8px, -3px); }
}

/* ═══ TERMINAL BOX ═══ */
.terminal-box {
  background: rgba(8, 8, 8, 0.9);
  border: 1px solid rgba(0, 255, 65, 0.15);
  position: relative;
}

.terminal-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--neon), var(--blood), var(--cyan));
}

.terminal-prompt {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  color: var(--neon);
}

.terminal-dots {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}

.dot-r { background: var(--blood); }
.dot-y { background: var(--yellow); }
.dot-g { background: var(--neon); }

/* ═══ BLOG ═══ */
.blog-section {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(0, 255, 65, 0.03) 0%, transparent 50%),
    var(--void);
}

.blog-new-post { padding: 1.5rem; margin-bottom: 3rem; }

.new-post-header {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  color: var(--neon);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gothic-input, .gothic-textarea, .gothic-select {
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 255, 65, 0.15);
  color: var(--neon);
  font-family: 'VT323', monospace;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  margin-bottom: 0.8rem;
  outline: none;
  transition: all 0.3s;
}

.terminal-input:focus {
  border-color: var(--neon);
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.1);
}

.gothic-textarea { resize: vertical; min-height: 100px; }

.gothic-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%2300ff41'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.terminal-select option {
  background: var(--void);
  color: var(--neon);
}

.gothic-btn, .terminal-btn {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--neon);
  background: rgba(0, 255, 65, 0.05);
  border: 1px solid rgba(0, 255, 65, 0.3);
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.gothic-btn:hover, .terminal-btn:hover {
  background: rgba(0, 255, 65, 0.1);
  border-color: var(--neon);
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
  color: var(--white);
}

.new-post-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.new-post-actions .gothic-select { margin-bottom: 0; max-width: 200px; }

/* Posts */
.posts-grid {
  display: grid;
  gap: 1.5rem;
}

.post-card {
  background: rgba(8, 8, 8, 0.8);
  border: 1px solid rgba(0, 255, 65, 0.1);
  padding: 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.post-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--blood);
  opacity: 0.5;
}

.post-card:hover {
  border-color: rgba(0, 255, 65, 0.25);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.05);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: #444;
  font-family: 'VT323', monospace;
}

.post-category {
  font-family: 'Press Start 2P', cursive;
  font-size: 0.5rem;
  color: var(--blood);
  border: 1px solid rgba(255, 0, 64, 0.3);
  padding: 0.3rem 0.6rem;
  letter-spacing: 0.05em;
}

.post-title {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.post-body {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: #888;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 255, 65, 0.08);
  padding-top: 1rem;
}

.post-likes {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.like-btn {
  background: none;
  border: 1px solid rgba(255, 0, 64, 0.3);
  color: var(--blood);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.3rem 0.8rem;
  transition: all 0.3s;
  font-family: 'VT323', monospace;
}

.like-btn:hover {
  background: rgba(255, 0, 64, 0.1);
  border-color: var(--blood);
}

.like-count {
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  color: var(--blood);
}

.comments-toggle {
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  color: var(--neon-dim);
  background: none;
  border: 1px solid rgba(0, 255, 65, 0.15);
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.comments-toggle:hover {
  color: var(--neon);
  border-color: var(--neon);
}

.comments-section {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(0, 255, 65, 0.08);
  padding-top: 1rem;
  display: none;
}

.comments-section.open { display: block; }

.comment {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 255, 65, 0.05);
}

.comment:last-child { border-bottom: none; }

.comment-author {
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  color: var(--neon);
  margin-bottom: 0.2rem;
}

.comment-text {
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  color: #777;
  line-height: 1.5;
}

.comment-time {
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  color: #333;
  margin-top: 0.2rem;
}

.comment-input-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.comment-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 255, 65, 0.1);
  color: var(--neon);
  font-family: 'VT323', monospace;
  font-size: 0.95rem;
  padding: 0.5rem 0.8rem;
  outline: none;
}

.comment-input:focus { border-color: var(--neon); }

.comment-submit {
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  color: var(--neon);
  background: none;
  border: 1px solid rgba(0, 255, 65, 0.2);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.comment-submit:hover {
  background: rgba(0, 255, 65, 0.1);
  border-color: var(--neon);
}

/* ═══ GALLERY ═══ */
.gallery-section {
  background:
    radial-gradient(ellipse at 70% 70%, rgba(255, 0, 64, 0.03) 0%, transparent 50%),
    var(--void);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 65, 0.1);
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--void);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
  filter: brightness(0.6) contrast(1.2) saturate(0.5);
}

.gallery-item:hover img {
  filter: brightness(0.9) contrast(1.1) saturate(0.8);
  transform: scale(1.05);
}

.glitch-scanline {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: rgba(0, 255, 65, 0.4);
  animation: glitchScan 4s infinite linear;
  pointer-events: none;
}

@keyframes glitchScan {
  0% { top: -3px; }
  100% { top: 100%; }
}

.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay span {
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  color: var(--neon);
}

/* ═══ CHAT ═══ */
.chat-section {
  background:
    radial-gradient(ellipse at 50% 80%, rgba(0, 255, 65, 0.03) 0%, transparent 50%),
    var(--void);
}

.chat-container { padding: 0; overflow: hidden; }

.chat-status {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid rgba(0, 255, 65, 0.1);
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  color: #555;
}

.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blood);
  animation: pulse 2s ease-in-out infinite;
}

.status-dot.connected { background: var(--neon); box-shadow: 0 0 6px var(--neon); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.online-count {
  margin-left: auto;
  font-family: 'VT323', monospace;
  color: var(--neon-dim);
}

.chat-messages {
  height: 380px;
  overflow-y: auto;
  padding: 1rem;
  scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-track { background: var(--void); }
.chat-messages::-webkit-scrollbar-thumb { background: var(--neon-dim); }

.chat-system-msg {
  text-align: center;
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  color: var(--neon-dim);
  padding: 0.8rem;
  font-style: italic;
}

.terminal-msg {
  font-family: 'VT323', monospace;
}

.chat-msg {
  margin-bottom: 0.6rem;
  animation: msgGlitch 0.3s ease;
}

@keyframes msgGlitch {
  0% { opacity: 0; transform: translateX(-5px); }
  50% { transform: translateX(2px); }
  100% { opacity: 1; transform: translateX(0); }
}

.chat-msg-author {
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  color: var(--neon);
}

.chat-msg-text {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: #888;
  line-height: 1.5;
  margin-left: 0.5rem;
}

.chat-msg-time {
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  color: #333;
  margin-top: 0.1rem;
  margin-left: 0.5rem;
}

.chat-input-area {
  padding: 1rem;
  border-top: 1px solid rgba(0, 255, 65, 0.1);
}

.chat-name-input { max-width: 250px; margin-bottom: 0.6rem; }

.chat-input-row {
  display: flex;
  gap: 0.5rem;
}

.chat-msg-input { flex: 1; margin-bottom: 0; }
.chat-send-btn { flex-shrink: 0; }

/* ═══ FOOTER ═══ */
.main-footer {
  border-top: 1px solid rgba(255, 0, 64, 0.1);
  padding: 2rem;
  text-align: center;
  background: var(--void);
  position: relative;
  z-index: 1;
}

.footer-inner { max-width: 600px; margin: 0 auto; }

.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: var(--blood);
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
}

.footer-text {
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  color: #444;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.footer-small { font-size: 0.75rem; color: #333; }

.footer-back {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  color: var(--neon-dim);
  text-decoration: none;
  border: 1px solid rgba(0, 255, 65, 0.15);
  padding: 0.5rem 1.2rem;
  transition: all 0.3s;
}

.footer-back:hover {
  color: var(--neon);
  border-color: var(--neon);
}

/* ═══ LIGHTBOX ═══ */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox-content {
  max-width: 700px;
  max-height: 80vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border: 1px solid rgba(0, 255, 65, 0.2);
}

.lightbox-content p {
  margin-top: 1rem;
  font-family: 'VT323', monospace;
  font-size: 1rem;
  color: var(--neon);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }

  .hero-title { font-size: clamp(1.2rem, 6vw, 2rem); }
  .hero-gifs { display: none; }
  .hero-angel-img { width: 90px; height: 90px; }
  .hero-stats { gap: 1.5rem; }

  .section-inner { padding: 2rem 1rem; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .chat-messages { height: 280px; }

  .new-post-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .new-post-actions .gothic-select { max-width: 100%; }

  .chat-input-row { flex-direction: column; }

  .post-footer {
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

::selection {
  background: var(--neon);
  color: var(--void);
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: #333;
}

.empty-state .cross-big {
  font-size: 2rem;
  color: rgba(255, 0, 64, 0.2);
  display: block;
  margin-bottom: 1rem;
}

.empty-state p {
  font-family: 'VT323', monospace;
  font-size: 1rem;
}
