/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== TEMA POR DEFECTO (tu estilo actual) ===== */
body.theme-default {
  font-family: 'Courier New', monospace;
  background-color: #99ccff; /* Azul cielo de los 2000 */
  color: #333;
  line-height: 1.6;
}

.theme-default .header-img {
  width: 100%;
  height: auto;
  border-bottom: 3px solid #333;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.theme-default .container {
  display: flex;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.theme-default .sidebar {
  width: 200px;
  background: #e0f0e0;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.theme-default .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
}

.theme-default .social-icons a {
  text-decoration: none;
}

.theme-default .social-icons img {
  width: 40px;
  margin: 5px;
  transition: transform 0.2s;
}

.theme-default .social-icons img:hover {
  transform: scale(1.1);
}

.theme-default .sidebar nav ul {
  list-style: none;
  margin-top: 20px;
}

.theme-default .sidebar nav li a {
  display: block;
  padding: 8px;
  margin: 5px 0;
  background: #d0e0d0;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: background 0.2s;
}

.theme-default .sidebar nav li a:hover {
  background: #c0d0c0;
}

.theme-default .theme-selector button {
  width: 100%;
  padding: 5px;
  background: #b0c0b0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.theme-default .content {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}

.theme-default .comic-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.theme-default .nav-btn {
  padding: 5px 10px;
  background: #88cc88;
  border-radius: 20px;
  text-decoration: none;
  color: white;
  font-size: 0.9em;
  transition: background 0.2s;
}

.theme-default .nav-btn:hover {
  background: #77bb77;
}

.theme-default .nav-btn.active {
  background: #559955;
  font-weight: bold;
}

.theme-default .comic-panel img {
  max-width: 100%;
  height: auto;
  border: 2px solid #ccc;
  border-radius: 5px;
}

.theme-default .tags {
  margin: 15px 0;
  font-size: 0.9em;
}

.theme-default .tag {
  background: #f0f0f0;
  padding: 3px 8px;
  margin: 0 5px;
  border-radius: 15px;
  font-size: 0.8em;
}

.theme-default .social-feed {
  margin-top: 30px;
  padding: 15px;
  background: #f8f8f8;
  border-radius: 10px;
}

.theme-default .post {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.theme-default .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.theme-default .preview {
  max-width: 100%;
  margin-top: 10px;
  border-radius: 5px;
}

.theme-default .donate-section {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: #ffeb3b;
  border-radius: 10px;
}

.theme-default .donate-btn {
  background: #ff9800;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

.theme-default .footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: white;
  margin-top: 30px;
}

.theme-default .character-strip {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.theme-default .character-strip img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.theme-default .about-section-title {
  background: #e0f0e0;
  color: #333;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* ✅ Estilos para personajes - TEMA DEFAULT */
.theme-default .character-scroll-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.theme-default .character-scroll-image img {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.theme-default .character-scroll-bio {
  flex: 1;
}

/* ✅ Badge de artista - TEMA DEFAULT */
.theme-default .fanart-author {
  display: inline-block;
  padding: 2px 8px;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.85em;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.theme-default .fanart-author:hover {
  background: #e0e0e0;
  text-decoration: underline;
}

/* ===== TEMA OSCURO (COMPLETO Y SIN DEFORMACIONES) ===== */
body.theme-dark {
  font-family: 'Courier New', monospace;
  background-color: #0f0f1b;
  color: #e0e0ff;
  line-height: 1.6;
}

.theme-dark .header-img {
  width: 100%;
  height: auto;
  border-bottom: 3px solid #555;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.theme-dark .container {
  display: flex;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.theme-dark .sidebar {
  width: 200px;
  background: #1a1a2e;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  color: #e0e0ff;
}

.theme-dark .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
}

.theme-dark .social-icons a {
  text-decoration: none;
}

.theme-dark .social-icons img {
  width: 40px;
  margin: 5px;
  filter: brightness(1.1);
  transition: transform 0.2s;
}

.theme-dark .social-icons img:hover {
  transform: scale(1.1);
}

.theme-dark .sidebar nav ul {
  list-style: none;
  margin-top: 20px;
}

.theme-dark .sidebar nav li a {
  display: block;
  padding: 8px;
  margin: 5px 0;
  background: #2d2d44;
  border-radius: 5px;
  text-decoration: none;
  color: #e0e0ff;
  font-weight: bold;
  transition: background 0.2s;
}

.theme-dark .sidebar nav li a:hover {
  background: #3a3a5a;
}

.theme-dark .theme-selector button {
  width: 100%;
  padding: 5px;
  background: #3a3a5a;
  border: none;
  border-radius: 5px;
  color: #e0e0ff;
  cursor: pointer;
}

.theme-dark .content {
  flex: 1;
  background: #161625;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  color: #e0e0ff;
}

.theme-dark .comic-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.theme-dark .nav-btn {
  padding: 5px 10px;
  background: #555588;
  border-radius: 20px;
  text-decoration: none;
  color: #e0e0ff;
  font-size: 0.9em;
  transition: background 0.2s;
}

.theme-dark .nav-btn:hover {
  background: #666699;
}

.theme-dark .nav-btn.active {
  background: #7777aa;
  font-weight: bold;
}

.theme-dark .comic-panel img {
  max-width: 100%;
  height: auto;
  border: 2px solid #555;
  border-radius: 5px;
}

.theme-dark .tags {
  margin: 15px 0;
  font-size: 0.9em;
}

.theme-dark .tag {
  background: #2a2a3a;
  padding: 3px 8px;
  margin: 0 5px;
  border-radius: 15px;
  font-size: 0.8em;
  color: #e0e0ff;
}

.theme-dark .social-feed {
  margin-top: 30px;
  padding: 15px;
  background: #1f1f2f;
  border-radius: 10px;
}

.theme-dark .post {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #333;
  color: #e0e0ff;
}

.theme-dark .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.theme-dark .preview {
  max-width: 100%;
  margin-top: 10px;
  border-radius: 5px;
}

.theme-dark .donate-section {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: #ff5555;
  border-radius: 10px;
}

.theme-dark .donate-btn {
  background: #ff3333;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

.theme-dark .footer {
  text-align: center;
  padding: 20px;
  background: #0a0a14;
  color: #aaaaff;
  margin-top: 30px;
}

.theme-dark .character-strip {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.theme-dark .character-strip img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  filter: brightness(1.1);
}

.theme-dark .about-section-title {
  background: #2a2a3a;
  color: #e0e0ff;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ✅ Estilos para personajes - TEMA OSCURO */
.theme-dark .character-scroll-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.theme-dark .character-scroll-image img {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.theme-dark .character-scroll-bio {
  flex: 1;
}

/* ✅ Badge de artista - TEMA OSCURO */
.theme-dark .fanart-author {
  display: inline-block;
  padding: 2px 8px;
  background: #2a2a3a;
  border: 1px solid #444;
  border-radius: 4px;
  font-size: 0.85em;
  color: #e0e0ff;
  text-decoration: none;
  transition: background 0.2s;
}

.theme-dark .fanart-author:hover {
  background: #3a3a5a;
  text-decoration: underline;
}

/* ===== TEMA BUBBLEGUM (rosa pastel) ===== */
body.theme-bubblegum {
  font-family: 'Courier New', monospace;
  background-color: #fff0f5;
  color: #c2185b;
  line-height: 1.6;
}

.theme-bubblegum .header-img {
  width: 100%;
  height: auto;
  border-bottom: 3px solid #ff80ab;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.theme-bubblegum .container {
  display: flex;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.theme-bubblegum .sidebar {
  width: 200px;
  background: #ffe6ee;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  color: #c2185b;
}

.theme-bubblegum .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
}

.theme-bubblegum .social-icons a {
  text-decoration: none;
}

.theme-bubblegum .social-icons img {
  width: 40px;
  margin: 5px;
  transition: transform 0.2s;
}

.theme-bubblegum .social-icons img:hover {
  transform: scale(1.1);
}

.theme-bubblegum .sidebar nav ul {
  list-style: none;
  margin-top: 20px;
}

.theme-bubblegum .sidebar nav li a {
  display: block;
  padding: 8px;
  margin: 5px 0;
  background: #ffd1dc;
  border-radius: 5px;
  text-decoration: none;
  color: #880e4f;
  font-weight: bold;
  transition: background 0.2s;
}

.theme-bubblegum .sidebar nav li a:hover {
  background: #ff80ab;
}

.theme-bubblegum .theme-selector button {
  width: 100%;
  padding: 5px;
  background: #ff80ab;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

.theme-bubblegum .content {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
  color: #c2185b;
}

.theme-bubblegum .comic-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.theme-bubblegum .nav-btn {
  padding: 5px 10px;
  background: #ff80ab;
  border-radius: 20px;
  text-decoration: none;
  color: white;
  font-size: 0.9em;
  transition: background 0.2s;
}

.theme-bubblegum .nav-btn:hover {
  background: #f50057;
}

.theme-bubblegum .nav-btn.active {
  background: #c2185b;
  font-weight: bold;
}

.theme-bubblegum .comic-panel img {
  max-width: 100%;
  height: auto;
  border: 2px solid #ff80ab;
  border-radius: 5px;
}

.theme-bubblegum .tags {
  margin: 15px 0;
  font-size: 0.9em;
}

.theme-bubblegum .tag {
  background: #ffe6ee;
  padding: 3px 8px;
  margin: 0 5px;
  border-radius: 15px;
  font-size: 0.8em;
  color: #c2185b;
}

.theme-bubblegum .social-feed {
  margin-top: 30px;
  padding: 15px;
  background: #fff0f5;
  border-radius: 10px;
}

.theme-bubblegum .post {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ffd1dc;
  color: #c2185b;
}

.theme-bubblegum .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.theme-bubblegum .preview {
  max-width: 100%;
  margin-top: 10px;
  border-radius: 5px;
}

.theme-bubblegum .donate-section {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: #ffccdd;
  border-radius: 10px;
}

.theme-bubblegum .donate-btn {
  background: #f50057;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

.theme-bubblegum .footer {
  text-align: center;
  padding: 20px;
  background: #c2185b;
  color: white;
  margin-top: 30px;
}

.theme-bubblegum .character-strip {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.theme-bubblegum .character-strip img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.theme-bubblegum .about-section-title {
  background: #ffe6ee;
  color: #c2185b;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* ✅ Estilos para personajes - TEMA BUBBLEGUM */
.theme-bubblegum .character-scroll-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.theme-bubblegum .character-scroll-image img {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.theme-bubblegum .character-scroll-bio {
  flex: 1;
}

/* ✅ Badge de artista - TEMA BUBBLEGUM */
.theme-bubblegum .fanart-author {
  display: inline-block;
  padding: 2px 8px;
  background: #ffe6ee;
  border: 1px solid #ff80ab;
  border-radius: 4px;
  font-size: 0.85em;
  color: #c2185b;
  text-decoration: none;
  transition: background 0.2s;
}

.theme-bubblegum .fanart-author:hover {
  background: #ffd1dc;
  text-decoration: underline;
}

/* ===== TEMA KING (dorado / regio) ===== */
body.theme-king {
  font-family: 'Courier New', monospace;
  background-color: #fff8e1;
  color: #5d4037;
  line-height: 1.6;
}

.theme-king .header-img {
  width: 100%;
  height: auto;
  border-bottom: 3px solid #ffd54f;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.theme-king .container {
  display: flex;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.theme-king .sidebar {
  width: 200px;
  background: #fff3e0;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  color: #5d4037;
}

.theme-king .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
}

.theme-king .social-icons a {
  text-decoration: none;
}

.theme-king .social-icons img {
  width: 40px;
  margin: 5px;
  transition: transform 0.2s;
}

.theme-king .social-icons img:hover {
  transform: scale(1.1);
}

.theme-king .sidebar nav ul {
  list-style: none;
  margin-top: 20px;
}

.theme-king .sidebar nav li a {
  display: block;
  padding: 8px;
  margin: 5px 0;
  background: #ffecb3;
  border-radius: 5px;
  text-decoration: none;
  color: #5d4037;
  font-weight: bold;
  transition: background 0.2s;
}

.theme-king .sidebar nav li a:hover {
  background: #ffd54f;
}

.theme-king .theme-selector button {
  width: 100%;
  padding: 5px;
  background: #ffd54f;
  border: none;
  border-radius: 5px;
  color: #5d4037;
  font-weight: bold;
  cursor: pointer;
}

.theme-king .content {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
  color: #5d4037;
}

.theme-king .comic-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.theme-king .nav-btn {
  padding: 5px 10px;
  background: #ffd54f;
  border-radius: 20px;
  text-decoration: none;
  color: #5d4037;
  font-size: 0.9em;
  transition: background 0.2s;
}

.theme-king .nav-btn:hover {
  background: #ffb300;
}

.theme-king .nav-btn.active {
  background: #ff8f00;
  font-weight: bold;
}

.theme-king .comic-panel img {
  max-width: 100%;
  height: auto;
  border: 2px solid #ffd54f;
  border-radius: 5px;
}

.theme-king .tags {
  margin: 15px 0;
  font-size: 0.9em;
}

.theme-king .tag {
  background: #fff3e0;
  padding: 3px 8px;
  margin: 0 5px;
  border-radius: 15px;
  font-size: 0.8em;
  color: #5d4037;
}

.theme-king .social-feed {
  margin-top: 30px;
  padding: 15px;
  background: #fff8e1;
  border-radius: 10px;
}

.theme-king .post {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ffd54f;
  color: #5d4037;
}

.theme-king .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.theme-king .preview {
  max-width: 100%;
  margin-top: 10px;
  border-radius: 5px;
}

.theme-king .donate-section {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: #ffecb3;
  border-radius: 10px;
}

.theme-king .donate-btn {
  background: #ffb300;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

.theme-king .footer {
  text-align: center;
  padding: 20px;
  background: #5d4037;
  color: white;
  margin-top: 30px;
}

.theme-king .character-strip {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.theme-king .character-strip img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.theme-king .about-section-title {
  background: #fff3e0;
  color: #5d4037;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* ✅ Estilos para personajes - TEMA KING */
.theme-king .character-scroll-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.theme-king .character-scroll-image img {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.theme-king .character-scroll-bio {
  flex: 1;
}

/* ✅ Badge de artista - TEMA KING */
.theme-king .fanart-author {
  display: inline-block;
  padding: 2px 8px;
  background: #fff3e0;
  border: 1px solid #ffd54f;
  border-radius: 4px;
  font-size: 0.85em;
  color: #5d4037;
  text-decoration: none;
  transition: background 0.2s;
}

.theme-king .fanart-author:hover {
  background: #ffecb3;
  text-decoration: underline;
}

/* ===== TEMA TECHNO (azul cibernético) ===== */
body.theme-techno {
  font-family: 'Courier New', monospace;
  background-color: #000c24;
  color: #4fc3f7;
  line-height: 1.6;
}

.theme-techno .header-img {
  width: 100%;
  height: auto;
  border-bottom: 3px solid #00e5ff;
  box-shadow: 0 4px 8px rgba(0,188,212,0.3);
}

.theme-techno .container {
  display: flex;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.theme-techno .sidebar {
  width: 200px;
  background: #001f3f;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0,229,255,0.2);
  color: #4fc3f7;
}

.theme-techno .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
}

.theme-techno .social-icons a {
  text-decoration: none;
}

.theme-techno .social-icons img {
  width: 40px;
  margin: 5px;
  filter: brightness(1.3);
  transition: transform 0.2s;
}

.theme-techno .social-icons img:hover {
  transform: scale(1.1);
}

.theme-techno .sidebar nav ul {
  list-style: none;
  margin-top: 20px;
}

.theme-techno .sidebar nav li a {
  display: block;
  padding: 8px;
  margin: 5px 0;
  background: #003366;
  border-radius: 5px;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  transition: background 0.2s;
}

.theme-techno .sidebar nav li a:hover {
  background: #0077b6;
}

.theme-techno .theme-selector button {
  width: 100%;
  padding: 5px;
  background: #00e5ff;
  border: none;
  border-radius: 5px;
  color: #001f3f;
  font-weight: bold;
  cursor: pointer;
}

.theme-techno .content {
  flex: 1;
  background: #001a33;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0,188,212,0.3);
  color: #e0f7fa;
}

.theme-techno .comic-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.theme-techno .nav-btn {
  padding: 5px 10px;
  background: #00e5ff;
  border-radius: 20px;
  text-decoration: none;
  color: #001f3f;
  font-size: 0.9em;
  transition: background 0.2s;
}

.theme-techno .nav-btn:hover {
  background: #00b0ff;
}

.theme-techno .nav-btn.active {
  background: #00838f;
  font-weight: bold;
}

.theme-techno .comic-panel img {
  max-width: 100%;
  height: auto;
  border: 2px solid #00e5ff;
  border-radius: 5px;
}

.theme-techno .tags {
  margin: 15px 0;
  font-size: 0.9em;
}

.theme-techno .tag {
  background: #00264d;
  padding: 3px 8px;
  margin: 0 5px;
  border-radius: 15px;
  font-size: 0.8em;
  color: #4fc3f7;
}

.theme-techno .social-feed {
  margin-top: 30px;
  padding: 15px;
  background: #00122a;
  border-radius: 10px;
}

.theme-techno .post {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #0077b6;
  color: #e0f7fa;
}

.theme-techno .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  filter: brightness(1.2);
}

.theme-techno .preview {
  max-width: 100%;
  margin-top: 10px;
  border-radius: 5px;
}

.theme-techno .donate-section {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: #003366;
  border-radius: 10px;
}

.theme-techno .donate-btn {
  background: #00e5ff;
  color: #001f3f;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

.theme-techno .footer {
  text-align: center;
  padding: 20px;
  background: #001f3f;
  color: #4fc3f7;
  margin-top: 30px;
}

.theme-techno .character-strip {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.theme-techno .character-strip img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  filter: brightness(1.2);
}

.theme-techno .about-section-title {
  background: #00264d;
  color: #4fc3f7;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* ✅ Estilos para personajes - TEMA TECHNO */
.theme-techno .character-scroll-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.theme-techno .character-scroll-image img {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,188,212,0.3);
}

.theme-techno .character-scroll-bio {
  flex: 1;
}

/* ✅ Badge de artista - TEMA TECHNO */
.theme-techno .fanart-author {
  display: inline-block;
  padding: 2px 8px;
  background: #00264d;
  border: 1px solid #00e5ff;
  border-radius: 4px;
  font-size: 0.85em;
  color: #4fc3f7;
  text-decoration: none;
  transition: background 0.2s;
}

.theme-techno .fanart-author:hover {
  background: #003366;
  text-decoration: underline;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 10px;
  }

  .sidebar {
    width: 100%;
    margin-bottom: 20px;
  }

  .content {
    padding: 15px;
  }

  .comic-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-btn {
    text-align: center;
  }

  .post {
    flex-direction: column;
  }

  .avatar {
    width: 40px;
    height: 40px;
  }

  /* Responsive para personajes */
  .character-scroll-item {
    flex-direction: column;
    gap: 15px;
  }

  .character-scroll-image img {
    max-width: 100%;
  }
}

/* ===== ESTILOS MODAL FANART ===== */
#fanart-modal .modal-content {
  color: black;
  text-align: center;
}

#fanart-modal #modal-caption {
  color: black;
  font-size: 16px;
  margin-top: 10px;
}

#fanart-modal #modal-counter {
  color: black;
  margin: 5px 0;
  font-weight: bold;
}

#fanart-modal .close {
  color: #333;
}