/* ==========================================================================
   SISTEMA DE DISEÑO DEPORTIVO PREMIUM - MODO OSCURO MUNDIAL 2026 CSS
   ========================================================================== */

:root {
  --bg-primary: #07120e;      /* Verde oscuro profundo casi negro */
  --bg-secondary: #0c1f17;    /* Verde oscuro para tarjetas y bloques */
  --bg-dark: #040a08;         /* Fondo ultra oscuro */
  --text-primary: #f8fafc;    /* Texto claro de alta legibilidad */
  --text-secondary: #cbd5e1;  /* Texto secundario gris claro */
  --text-muted: #64748b;
  --accent-color: #10b981;    /* Verde esmeralda deportivo brillante */
  --accent-color-hover: #059669;
  --accent-light: rgba(16, 185, 129, 0.12);
  --border-color: #123324;    /* Bordes sutiles oscuros */
  --border-dark: #1b4b35;
  
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
  --shadow-accent: 0 10px 20px rgba(16, 185, 129, 0.25);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset y Estilos Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--accent-color);
  color: #040a08; /* Texto oscuro sobre botón verde brillante */
}

.btn-primary:hover {
  background-color: var(--accent-color-hover);
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--bg-secondary);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(7, 18, 14, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--text-primary);
  letter-spacing: -0.04em;
}

.logo-dot {
  width: 12px;
  height: 12px;
  background-color: var(--accent-color);
  border-radius: var(--radius-full);
  margin-right: 8px;
  display: inline-block;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-item {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-item:hover {
  color: var(--accent-color);
}

.btn-nav {
  border: 1px solid var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.btn-nav:hover {
  background-color: var(--accent-color);
  color: var(--bg-dark);
}

/* Hero Section */
.hero-section {
  padding: 170px 0 110px 0;
  background: radial-gradient(circle at 80% 20%, var(--bg-secondary) 0%, var(--bg-primary) 80%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-light);
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-title {
  font-size: 3.4rem;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-diff {
  font-size: 0.98rem;
  color: var(--text-muted);
  border-left: 3px solid var(--accent-color);
  padding-left: 18px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
}

.img-premium {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Sections Generales */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px auto;
}

.section-title {
  font-size: 2.4rem;
  color: var(--text-primary);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: var(--bg-dark);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

.benefit-icon {
  font-size: 2.8rem;
  margin-bottom: 24px;
  display: inline-block;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Catalog Section */
.catalog-section {
  padding: 100px 0;
}

.resources-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.resource-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--bg-secondary);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.resource-icon {
  font-size: 2.8rem;
}

.resource-info {
  flex-grow: 1;
}

.resource-info h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.resource-info p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.catalog-grid {
  display: flex;
  justify-content: center;
}

.product-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent-color);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 500px;
  width: 100%;
}

.product-image-wrapper {
  height: 250px;
  background-color: var(--bg-dark);
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-img {
  transform: scale(1.03);
}

.product-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-price-block {
  margin-bottom: 24px;
}

.product-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-color);
  display: inline-block;
  letter-spacing: -0.04em;
}

.product-period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-left: 6px;
}

.product-name {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.product-description {
  font-size: 0.98rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.product-features {
  list-style: none;
  margin-bottom: 36px;
  flex-grow: 1;
}

.product-features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-features li::before {
  content: "⚽";
  font-size: 0.9rem;
}

/* Payments Section */
.payments-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  border-top: 1px solid var(--border-color);
}

.payments-section .section-title {
  color: var(--text-primary);
}

.payments-section .section-subtitle {
  color: var(--text-secondary);
}

.payments-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.payments-list {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}

.payment-item {
  display: flex;
  gap: 20px;
  background-color: var(--bg-secondary);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.payment-icon {
  font-size: 2.2rem;
}

.payment-item h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--accent-color);
}

.payment-item p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.payments-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wallet-card {
  width: 100%;
  max-width: 380px;
  background: rgba(12, 31, 23, 0.45);
  border: 1px solid rgba(16, 185, 129, 0.2);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.wallet-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.wallet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 14px;
}

.wallet-status {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 6px;
}

.wallet-status::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px var(--accent-color);
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}

.contact-details {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
}

.detail-icon {
  font-size: 1.6rem;
  color: var(--accent-color);
}

.contact-detail-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.contact-detail-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact-form-block {
  background-color: var(--bg-secondary);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.form-title {
  margin-bottom: 24px;
  font-size: 1.45rem;
  color: var(--text-primary);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.form-group input, .form-group select {
  font-family: var(--font-sans);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-dark);
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

/* Footer */
.main-footer {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  padding: 45px 0;
  color: var(--text-secondary);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
}

/* ==========================================================================
   WIDGETS FLOTANTES INTERACTIVOS (STYLING)
   ========================================================================== */

/* 1. Chatbot IA */
.ai-chat-widget {
  position: fixed;
  bottom: 45px;
  left: 45px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ai-chat-trigger {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  color: var(--bg-dark);
  border: none;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
}

.ai-chat-trigger:hover {
  transform: scale(1.08);
  background-color: var(--accent-color-hover);
  color: #ffffff;
}

.trigger-icon {
  font-size: 1.8rem;
}

.trigger-badge {
  position: absolute;
  top: -4px;
  left: 35px;
  background-color: #eab308; /* Dorado */
  color: #040a08;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-primary);
  white-space: nowrap;
}

.ai-chat-box {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 380px;
  height: 520px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  pointer-events: none;
  transition: var(--transition);
}

.ai-chat-widget:not(.closed) .ai-chat-box {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.chat-header {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  font-size: 1.5rem;
  background-color: var(--accent-light);
  border: 1px solid var(--border-color);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
}

.chat-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.chat-status {
  font-size: 0.75rem;
  color: var(--accent-color);
  font-weight: 600;
}

.btn-close-chat {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-close-chat:hover {
  color: var(--text-primary);
}

.chat-messages {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--bg-dark);
}

.msg-bubble {
  max-width: 85%;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.45;
  word-wrap: break-word;
}

.msg-bubble.system {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  border: 1px solid var(--border-color);
}

.msg-bubble.user {
  background-color: var(--accent-color);
  color: #040a08; /* Texto oscuro sobre fondo verde de usuario */
  font-weight: 600;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  box-shadow: var(--shadow-sm);
}

.chat-input-area {
  display: flex;
  padding: 14px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  gap: 8px;
}

.chat-input-area input {
  flex-grow: 1;
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  background-color: var(--bg-dark);
  color: var(--text-primary);
}

.chat-input-area input:focus {
  border-color: var(--accent-color);
}

.btn-send-msg {
  background-color: var(--accent-color);
  color: #040a08;
  border: none;
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-send-msg:hover {
  background-color: var(--accent-color-hover);
  color: #ffffff;
}

/* 2. WhatsApp Button */
.whatsapp-float-trigger {
  position: fixed;
  bottom: 45px;
  right: 45px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float-trigger:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.3);
}

.wa-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Loader animado */
.dot-loader {
  font-weight: bold;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

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

/* Responsividad */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 45px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-diff {
    border-left: none;
    border-top: 3px solid var(--accent-color);
    padding-left: 0;
    padding-top: 18px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .resources-row {
    grid-template-columns: 1fr;
  }
  
  .payments-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .ai-chat-box {
    width: calc(100vw - 40px);
    height: 480px;
    left: 20px;
    bottom: 80px;
  }
  
  .ai-chat-widget {
    left: 30px;
    bottom: 30px;
  }
  
  .whatsapp-float-trigger {
    right: 30px;
    bottom: 30px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ==========================================================================
   ESTILOS DE MODAL PREMIUM (DETALLES DE BONUS HISTÓRICOS)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 10, 8, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.closed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  width: 90%;
  max-width: 600px;
  box-shadow: var(--shadow-lg);
  padding: 28px;
  position: relative;
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.closed .modal-card {
  transform: scale(0.95);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.btn-close-modal {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.btn-close-modal:hover {
  color: var(--text-primary);
}

.modal-body {
  margin-bottom: 24px;
}

.modal-intro {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.bonus-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .bonus-details-grid {
    grid-template-columns: 1fr;
  }
}

.bonus-detail-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.bonus-detail-item h4 {
  font-size: 0.95rem;
  color: var(--accent-color);
  margin-bottom: 6px;
}

.bonus-detail-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

/* Estilos de Entrega de Archivos en Chat */
.chat-file-delivery {
  background: rgba(4, 10, 8, 0.4);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-top: 10px;
}

.chat-file-delivery h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chat-file-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chat-file-item {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
  text-decoration: none;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-file-item:hover {
  background-color: var(--accent-light);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateX(3px);
}
