@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Jura:wght@400;500;600;700&display=swap');

:root {
  --bg-deep-black: #050505;
  --bg-charcoal: #121212;
  --bg-charcoal-light: #1A1A1A;
  --accent-neon-red: #f3002e;
  /* Crimson/Neon Red */
  --accent-neon-glow: 0 0 10px rgba(243, 0, 46, 0.5), 0 0 20px rgba(243, 0, 46, 0.3);
  --accent-neon-glow-intense: 0 0 15px rgba(243, 0, 46, 0.7), 0 0 30px rgba(243, 0, 46, 0.5), 0 0 45px rgba(243, 0, 46, 0.3);
  --text-main: #e0e0e0;
  --text-muted: #888888;
  --font-primary: 'Space Grotesk', sans-serif;
  --font-heading: 'Jura', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-deep-black);
  color: var(--text-main);
  font-family: var(--font-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Deep vignette shadow covering the screen edges */
.vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.8) 80%, black 100%);
  z-index: 10;
}

/* Navigation - Extremely Minimal */
.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  position: relative;
  z-index: 20;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.brand-logo {
  height: 32px;
  width: auto;
  opacity: 0.9;
  filter: drop-shadow(0 0 5px rgba(243, 0, 46, 0.4));
}

.app-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-main);
  opacity: 0.7;
}

.nav-icons {
  display: flex;
  gap: 1.5rem;
}

.icon-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon-btn:hover {
  color: var(--accent-neon-red);
  filter: drop-shadow(0 0 8px var(--accent-neon-red));
}

.icon {
  width: 24px;
  height: 24px;
}

/* Main Layout */
.main-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
  z-index: 20;
  /* Massive negative space achieved by containing width */
}

.content-wrapper {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-top: 5vh;
  /* Increased spacing from header */
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-main);
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.6;
}

.neon-text {
  color: var(--accent-neon-red);
  text-shadow: var(--accent-neon-glow);
  font-weight: 700;
}

/* Interaction Zone */
.interaction-zone {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Input Styles */
.input-container {
  width: 100%;
  background-color: var(--bg-charcoal);
  border: 1px solid rgba(243, 0, 46, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(0, 0, 0, 0.8);
}

.input-container:focus-within {
  border-color: var(--accent-neon-red);
  box-shadow: 0 0 15px rgba(243, 0, 46, 0.15), inset 0 0 15px rgba(0, 0, 0, 0.8);
}

textarea {
  width: 100%;
  min-height: 48px;
  max-height: 400px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  font-family: var(--font-primary);
  font-size: 1.1rem;
  line-height: 1.6;
  resize: none;
  overflow-y: hidden;
}

textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
}

/* Input Controls Bar */
.input-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.control-group-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Image Upload Preview */
.image-preview-container {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
  position: relative;
  width: fit-content;
}

.image-preview {
  height: 80px;
  width: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.remove-image-btn {
  background-color: rgba(5, 5, 5, 0.8);
  border: 1px solid rgba(243, 0, 46, 0.3);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: -0.5rem;
  transform: translate(50%, -50%);
  color: var(--text-muted);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.remove-image-btn:hover {
  color: var(--accent-neon-red);
  border-color: var(--accent-neon-red);
}

.upload-btn {
  color: var(--text-muted);
}

.upload-btn:hover {
  color: var(--accent-neon-red);
}

/* Modality Selector */
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  min-width: 160px;
}

.modality-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text-main);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  padding: 0.6rem 2.5rem 0.6rem 1rem;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

.modality-select:hover,
.modality-select:focus {
  border-color: rgba(243, 0, 46, 0.5);
  background-color: rgba(243, 0, 46, 0.05);
}

.modality-select option {
  background-color: var(--bg-charcoal);
  color: var(--text-main);
}

.select-icon {
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.modality-select:focus+.select-icon,
.modality-select:hover+.select-icon {
  color: var(--accent-neon-red);
}

/* Add Media Dropdown */
.add-media-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.add-media-btn {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.add-media-btn:hover {
  border-color: rgba(243, 0, 46, 0.5);
  background-color: rgba(243, 0, 46, 0.05);
  color: var(--accent-neon-red);
}

.plus-icon {
  width: 20px;
  height: 20px;
}

.add-media-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background-color: var(--bg-charcoal-light);
  border: 1px solid rgba(243, 0, 46, 0.2);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  padding: 0.5rem;
  min-width: 200px;
  flex-direction: column;
  z-index: 100;
  animation: fadeIn 0.2s ease forwards;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(243, 0, 46, 0.1);
  color: var(--accent-neon-red);
}

.dropdown-icon {
  width: 18px;
  height: 18px;
}

/* Polish Button */
.polish-btn {
  background: transparent;
  border: none;
  color: var(--accent-neon-red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.polish-icon {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 5px rgba(243, 0, 46, 0.5));
  transform: rotate(90deg);
}

.polish-btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.polish-btn:hover .polish-icon {
  filter: drop-shadow(var(--accent-neon-glow-intense));
}

/* Loading state for Polish Button */
.polish-btn.loading .polish-icon {
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(var(--accent-neon-glow-intense));
  }
}

/* Output Styles */
.output-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.output-content {
  flex: 1;
  background-color: var(--bg-charcoal-light);
  border-left: 2px solid var(--accent-neon-red);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  box-shadow: -5px 0 15px rgba(243, 0, 46, 0.1);
}

#polishedPrompt {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  white-space: pre-wrap;
}

.copy-btn {
  padding: 0.8rem;
  background-color: var(--bg-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  position: relative;
}

.copy-btn:hover {
  border-color: var(--accent-neon-red);
  background-color: rgba(243, 0, 46, 0.05);
}

.share-btn {
  margin-left: 0.5rem;
}

.copy-tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-neon-red);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.copy-tooltip.show {
  opacity: 1;
  visibility: visible;
  top: -40px;
}

/* ────────────────────────────────────────────────────────────
   Usage Tracker & Limits
──────────────────────────────────────────────────────────── */
.usage-tracker-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.inline-sign-in-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 12px;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 4px;
}

.inline-sign-in-btn:hover {
  color: var(--text-main);
  text-decoration-color: var(--accent-neon-red);
}

.usage-tracker {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.usage-tracker.limit-reached {
  color: var(--accent-neon-red);
  text-shadow: var(--accent-neon-glow);
  font-weight: 600;
}

/* ────────────────────────────────────────────────────────────
   Authentication Modal
──────────────────────────────────────────────────────────── */
.auth-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(5, 5, 5, 0.85);
  /* Dark bg */
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.4s ease forwards;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.auth-modal {
  background-color: var(--bg-charcoal);
  border: 1px solid rgba(243, 0, 46, 0.3);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(243, 0, 46, 0.1);
  border-radius: 12px;
  padding: 3rem;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  transform: translateY(20px);
  animation: slideUpModal 0.4s ease forwards;
}

@keyframes slideUpModal {
  to {
    transform: translateY(0);
  }
}

.auth-headline {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--text-main);
  text-transform: uppercase;
}

.auth-subcopy {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.google-btn {
  background-color: #ffffff;
  color: #1a1a1a;
  border: none;
}

.google-btn:hover {
  background-color: #f1f1f1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.google-icon {
  width: 20px;
  height: 20px;
}

.email-btn {
  background-color: transparent;
  color: var(--accent-neon-red);
  border: 1px solid var(--accent-neon-red);
}

.email-btn:hover {
  background-color: rgba(243, 0, 46, 0.05);
  box-shadow: var(--accent-neon-glow);
  transform: translateY(-2px);
}

/* ────────────────────────────────────────────────────────────
   History Modal & List Items
──────────────────────────────────────────────────────────── */
.history-modal-content {
  max-width: 600px;
  height: 80vh;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.history-list {
  width: 100%;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 0.5rem;
  margin-top: 1rem;
  text-align: left;
}

/* Custom scrollbar for history list */
.history-list::-webkit-scrollbar {
  width: 6px;
}

.history-list::-webkit-scrollbar-track {
  background: transparent;
}

.history-list::-webkit-scrollbar-thumb {
  background-color: rgba(243, 0, 46, 0.3);
  border-radius: 10px;
}

.history-list::-webkit-scrollbar-thumb:hover {
  background-color: rgba(243, 0, 46, 0.8);
}

.history-item {
  background-color: var(--bg-charcoal-light);
  border-left: 2px solid var(--accent-neon-red);
  padding: 1rem;
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.history-raw-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-polished-text {
  color: #ffffff;
  font-size: 1rem;
  white-space: pre-wrap;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ────────────────────────────────────────────────────────────
   Settings Drawer Frame
──────────────────────────────────────────────────────────── */
.settings-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(4px);
  z-index: 100;
  animation: fadeInModal 0.3s ease forwards;
}

.settings-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  background-color: var(--bg-charcoal);
  border-left: 1px solid rgba(243, 0, 46, 0.2);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  z-index: 110;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.settings-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* User Profile Module inside Drawer */
.user-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-pic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent-neon-red);
  box-shadow: 0 0 10px rgba(243, 0, 46, 0.4);
  object-fit: cover;
}

.profile-info {
  display: flex;
  flex-direction: column;
}

.profile-name {
  color: var(--text-main);
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.profile-email {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.logout-btn {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  margin-top: 1rem;
}

.logout-btn:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

/* ────────────────────────────────────────────────────────────
   Email Auth Form (inside auth modal)
──────────────────────────────────────────────────────────── */
.auth-email-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.auth-input {
  width: 100%;
  padding: 1rem;
  background-color: var(--bg-charcoal-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-primary);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.auth-input:focus {
  border-color: var(--accent-neon-red);
  box-shadow: 0 0 10px rgba(243, 0, 46, 0.15);
}

.auth-input::placeholder {
  color: var(--text-muted);
}

.auth-error {
  color: var(--accent-neon-red);
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.2em;
}

.auth-form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.auth-link {
  color: var(--accent-neon-red);
  text-decoration: none;
  cursor: pointer;
  transition: text-shadow 0.3s ease;
}

.auth-link:hover {
  text-shadow: var(--accent-neon-glow);
}

.auth-separator {
  color: rgba(255, 255, 255, 0.15);
}

/* ────────────────────────────────────────────────────────────
   Generating Animations
──────────────────────────────────────────────────────────── */
.output-content.pulsing {
  animation: pulseBox 2s infinite alternate;
}

@keyframes pulseBox {
  0% {
    box-shadow: -5px 0 15px rgba(243, 0, 46, 0.1);
    border-left-color: rgba(243, 0, 46, 0.5);
    background-color: var(--bg-charcoal-light);
  }

  100% {
    box-shadow: -5px 0 30px rgba(243, 0, 46, 0.4);
    border-left-color: var(--accent-neon-red);
    background-color: rgba(26, 26, 26, 0.8);
  }
}

.thinking-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-neon-red);
  font-family: var(--font-primary);
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.thinking-indicator .bouncing-dots {
  display: flex;
  gap: 4px;
}

.thinking-indicator .dot {
  width: 5px;
  height: 5px;
  background-color: var(--accent-neon-red);
  border-radius: 50%;
  animation: bounceDot 1.4s infinite ease-in-out both;
}

.thinking-indicator .dot:nth-child(1) {
  animation-delay: -0.32s;
}

.thinking-indicator .dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounceDot {

  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

#polishedPrompt.typing::after {
  content: '▋';
  display: inline-block;
  color: var(--accent-neon-red);
  animation: blinkCursor 1s step-start infinite;
  margin-left: 4px;
  vertical-align: baseline;
}

@keyframes blinkCursor {
  50% {
    opacity: 0;
  }
}

/* Skeleton Loading State for Text */
.skeleton-loading {
  width: 100%;
  height: 60px;
  background: linear-gradient(90deg, var(--bg-charcoal) 25%, var(--bg-charcoal-light) 50%, var(--bg-charcoal) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  color: transparent !important;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* SEO Content Section */
.seo-content-section {
  width: 100%;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-family: var(--font-primary);
}

.seo-heading {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.seo-subheading {
  font-size: 1.3rem;
  color: #fff;
  margin: 1.5rem 0 0.8rem;
}

.seo-paragraph {
  line-height: 1.6;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.seo-list {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.seo-list li {
  margin-bottom: 0.5rem;
}

.seo-list strong {
  color: var(--text-main);
}

.seo-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.seo-link {
  color: var(--accent-neon-red);
  text-decoration: none;
  transition: all 0.2s ease;
}

.seo-link:hover {
  text-shadow: var(--accent-neon-glow);
}

.seo-separator {
  color: rgba(255, 255, 255, 0.2);
}