@charset "utf-8";
/* CSS Document */

/* ========== GLOBAL ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: white;
}

.special-font {
  font-family: 'DynaPuff', cursive;
  font-weight: 700;
}


/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 100;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 8px 15px;
}

.nav-links a:hover {
  color: #a259ff;
}

#lang-toggle {
  padding: 0.5rem 1rem;
  border: none;
  background-color: #a259ff;
  color: white;
  border-radius: 20px;
  cursor: pointer;
}

/* ========== HERO / INICIO ========== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url("Fotos pagina/fondo.png") center center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(128, 0, 255, 0.6), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 800px;
}

/* Título animado */
.hero-title {
  font-size: 3rem;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid white;
  width: 0;
  animation: typing 3s steps(30, end) forwards, blink 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* Subtítulo */
.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  color: white;
}

/* Botón explorar */
.btn-explorar {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  background-color: #a259ff;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s, background-color 0.3s;
}

.btn-explorar:hover {
  transform: scale(1.05);
  background-color: #a259ff;
}

/* ========== SOBRE MÍ ========== */
.about-section {
  background-color: #000;
  color: white;
  padding: 6rem 2rem;
}

.about-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(162, 89, 255, 0.5);
  transition: transform 0.3s;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-content {
  flex: 1;
  animation: fadeInRight 1s ease forwards;
  opacity: 0;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-text {
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  white-space: pre-line;
  opacity: 0;
  animation: typingText 3s steps(40, end) forwards;
}

.btn-vermas {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: #a259ff;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-vermas:hover {
  background-color: #a259ff;
  transform: scale(1.05);
}

/* ========== ANIMACIONES ========== */
@keyframes typingText {
  from { width: 0; opacity: 0; }
  to { width: 100%; opacity: 1; }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* style.css - Seccion Streaming */

.streaming-section {
  background: #ffffff url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
  padding: 4rem 2rem;
  color: #000;
}

.streaming-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.streaming-intro h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.streaming-intro p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

.streaming-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-card {
  background: rgba(255,255,255,0.9);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card img {
  width: 100%;
  display: block;
  border-bottom: 1px solid #eee;
}

.stat-info {
  padding: 1rem;
  text-align: center;
}

.stat-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.stat-info p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.btn-sub, .btn-follow {
  display: inline-block;
  margin: 0.3rem;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  color: #fff;
}

.btn-sub:hover, .btn-follow:hover {
  transform: scale(1.05);
}

.btn-sub.twitch-color { background: #a259ff; }
.btn-sub.kick-color { background: #00FF00; color: #000; }
.btn-sub.youtube-color { background: #FF0000; }

.btn-follow {
  background: #ccc;
  color: #000;
}

/* Comentarios destacados */
.highlight-comments {
  margin-top: 5rem;
  text-align: center;
}

.highlight-comments h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.comments-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.comment-card {
  background: #f5f5f5;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  font-style: italic;
  text-align: left;
  position: relative;
}

.comment-card span {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  font-style: normal;
  font-size: 0.9rem;
}

/* Diferenciar plataformas por estilo */
.twitch-comment { border-left: 5px solid #a259ff; }
.youtube-comment { border-left: 5px solid #FF0000; }
.tiktok-comment { border-left: 5px solid #000000; }

/* === Juegos Section === */

.juegos-section {
  padding: 60px 20px;
  background: #000;
  color: white;
  position: relative;
}

.juegos-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.juegos-intro {
  text-align: center;
  margin-bottom: 40px;
}

.juegos-intro h2 {
  font-family: 'DynaPuff', cursive;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.juegos-intro p {
  font-size: 1rem;
  color: #ccc;
}

.juegos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.juego-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 transparent;
  position: relative;
  flex: 1 1 calc(33.333% - 2rem);
  padding: 1rem;
}

.juego-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(128, 0, 128, 0.3);
}

.juego-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
}

.juego-info {
  padding: 15px;
}

.juego-info h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
}

.juego-info p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 10px;
}

.juego-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-juego {
  background: transparent;
  border: 1px solid #fff;
  color: white;
  padding: 8px 14px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.btn-juego:hover {
  background: purple;
  color: white;
  border-color: purple;
}

.youtube-btn {
  border-color: red;
  color: red;
}

.youtube-btn:hover {
  background: red;
  color: white;
}

.clip-icon {
  margin-top: 10px;
  display: inline-block;
  font-size: 0.9rem;
  color: #aaa;
}

.tag-top {
  position: absolute;
  top: 10px;
  left: 10px;
  background: gold;
  color: #000;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  box-shadow: 0 0 10px gold;
  z-index: 1;
}

/* Para pantallas más pequeñas */
@media (max-width: 900px) {
  .juego-card {
    flex: 1 1 calc(50% - 2rem);
  }
}

@media (max-width: 600px) {
  .juego-card {
    flex: 1 1 100%;
  }
}

/* === Contacto Section === */
.contacto-section {
  padding: 60px 20px;
  background: #000;
  color: white;
  position: relative;
}

.contacto-header {
  text-align: center;
  margin-bottom: 40px;
}

.contacto-header h2 {
  font-family: 'DynaPuff', cursive;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contacto-header p {
  font-size: 1rem;
  color: #ccc;
}

.contacto-form {
  max-width: 600px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  outline: none;
  transition: background 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.2);
}

.btn-enviar {
  align-self: flex-start;
  padding: 12px 24px;
  background: purple;
  border: none;
  border-radius: 30px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-enviar:hover {
  background: #a259ff;
}

.contacto-directo {
  text-align: center;
  margin-bottom: 40px;
}

.contacto-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contacto-icon {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.contacto-icon:hover {
  background: rgba(255, 255, 255, 0.3);
}

.contacto-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #888;
}

@media (max-width: 600px) {
  .contacto-form {
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  /* Tipografía más pequeña */
  h1, h2, h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  /* Contenedores con padding */
  .container, .historia-container, .colaboraciones-container {
    padding: 1rem;
  }

  /* Secciones en columna */
  .colaboracion-item, .galeria-historia, .red-social {
    flex-direction: column;
    align-items: center;
  }

  .red-social img,
  .colaboracion-item img {
    width: 90%;
  }

  /* Navbar fijo más pequeño */
  nav {
    flex-direction: column;
    padding: 1rem;
  }

  /* Botones más grandes y separados */
  .btn, .btn-colab, .btn-sub, .btn-follow {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 300px;
  }

  /* Formulario adaptado */
  form input, form textarea {
    width: 100%;
    font-size: 1rem;
  }

  .form-row {
    flex-direction: column;
  }
