@font-face {
  font-family: 'VT323';
  src: url('src/fonts/VT323-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

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

body {
  font-family: 'VT323', monospace;
  background-color: #0f0f0f;
  color: #00C4FF;
  line-height: 1.6;
  background-image: url('src/img/Logo_G.png');
  background-size: 400px;
  background-repeat: no-repeat;
  background-position: top right;
  background-attachment: fixed;
  background-blend-mode: multiply;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #101010;
  box-shadow: 0 0 15px #00ff00aa;
  border-bottom: 2px solid #00ff00;
}

.logo img {
  height: 60px;
  filter: contrast(150%) brightness(120%);
}

nav {
  position: relative;
}

#menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

#menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #00ff00;
  display: block;
  box-shadow: 0 0 3px #00ff00;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #00ff00;
  font-weight: bold;
  transition: color 0.2s ease;
  font-family: 'VT323', monospace;
}

.nav-links a:hover {
  color: #fff;
}

h1, h2, h3 {
  font-family: 'VT323', monospace;
  text-align: center;
}

.section-title {
  font-size: 1.5rem;
  margin-top: 1rem;
  text-align: center;
  transition: color 0.3s ease;
  color: #00C4FF;
}

/* Twitch */
.twitch-embed {
  margin: 2rem auto;
  max-width: 960px;
  display: flex;
  justify-content: center;
  border: 2px solid #00ff00;
  box-shadow: 0 0 10px #00ff00;
  padding: 1rem;
  background: #000;
  transition: transform 0.3s ease;
}

.twitch-embed:hover {
  transform: scale(1.03);
}

.twitch-embed iframe {
  width: 100%;
  max-width: 100%;
  height: 480px;
  border: none;
}

/* YouTube */
.youtube-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background: #111;
  border-top: 2px solid #00ff00;
}

.yt-thumb {
  display: block;
  max-width: 320px;
  width: 100%;
  transition: transform 0.3s ease;
  box-shadow: 0 0 12px #00ff00;
  border-radius: 6px;
  overflow: hidden;
}

.yt-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 5px #00ff0044;
  transition: transform 0.3s ease;
}

.yt-thumb:hover img {
  transform: scale(1.03);
}

/* TikTok e Instagram */
.social-duo {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  background: #111;
  border-top: 2px solid #00ff00;
}

.tiktok-section,
.instagram-section {
  flex: 1;
  min-width: 320px;
  max-width: 100%;
  border: 2px solid #00ff00;
  box-shadow: 0 0 10px #00ff00;
  padding: 1rem;
  background-color: #000;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* TikTok player oficial */
.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.tiktok-player {
  width: 100%;
  height: 460px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 10px #00ff00;
  transition: box-shadow 0.3s ease;
}

.tiktok-player:hover {
  box-shadow: 0 0 16px #00ff00;
}

/* Instagram específico */
.instagram-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.instagram-section .elfsight-app-1429bdaf-2630-4192-8c41-8d153a4ad1ed {
  width: 100%;
  max-width: 800px;
  min-height: 600px;
  border: none;
  box-shadow: 0 0 10px #00ff00;
  border-radius: 8px;
}

/* Noticias */
.news-section {
  padding: 2rem;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  border-top: 2px solid #00ff00;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.news-item {
  background: #1b1b1b;
  border: 1px solid #00ff00aa;
  padding: 1rem;
  box-shadow: 0 0 8px #00ff00aa;
  color: #00C4FF;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.news-item:hover {
  transform: scale(1.03);
}

.news-item img.news-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 5px #00ff0044;
}

.news-item h3 {
  font-size: 1rem;
  margin: 0;
  color: #00ff00;
}

.news-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #101010;
  color: #00C4FF;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .tiktok-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #menu-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    display: none;
    background: #101010;
    position: absolute;
    right: 0;
    top: 100%;
    padding: 1rem;
    z-index: 10;
    border: 2px solid #00ff00;
    box-shadow: 0 0 10px #00ff00;
  }

  .nav-links.active {
    display: flex;
  }

  .twitch-embed iframe {
    height: 280px;
  }

  .tiktok-grid {
    grid-template-columns: 1fr;
  }

  .tiktok-player {
    height: 360px;
  }

  .youtube-gallery {
    flex-direction: column;
    align-items: center;
  }

  .yt-thumb {
    max-width: 100%;
  }

  .news-section {
    padding: 1rem;
  }

  .news-grid {
    padding: 0 0.5rem;
  }

  .news-item {
    padding: 0.75rem;
  }

  .instagram-section .elfsight-app-1429bdaf-2630-4192-8c41-8d153a4ad1ed {
    min-height: 500px;
  }
}
