@charset "UTF-8";
.striped-text {
  font-size: 96px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  background: repeating-linear-gradient(0deg, #ffffff 0px, #ffffff 2px, transparent 2px, transparent 4px);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent; }

/* ===========================
   SYNTHWAVE BACKGROUND
   =========================== */
/* Variables adaptadas a tu paleta */
:root {
  --dark-bg: #0a0a0f;
  --neon-pink: #ff00ff;
  /* Magenta de tu paleta */
  --neon-green: #00f0ff;
  /* Cyan de tu paleta */ }

/* Contenedor principal */
.grid-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none; }

/* Gradiente superior que se desvanece */
.top-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--dark-bg) 0%, rgba(10, 10, 15, 0.8) 50%, transparent 100%);
  z-index: 10; }

/* Brillo inferior con efecto neón */
.bottom-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(255, 0, 255, 0.15) 0%, rgba(0, 240, 255, 0.1) 50%, transparent 100%);
  z-index: 10; }

/* Grid en movimiento con perspectiva 3D */
.moving-grid {
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 100%;
  z-index: 0;
  background-image: linear-gradient(to right, rgba(0, 240, 255, 0.2) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 240, 255, 0.2) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0px 0px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center top;
  animation: moveGrid 2s linear infinite; }

/* Animación del grid */
@keyframes moveGrid {
  from {
    background-position: 0px 0px; }
  to {
    background-position: 0px 40px; } }
/* Elemento sol/luna estilo synthwave */
.synthwave-sun {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 255, 0.3) 0%, rgba(0, 240, 255, 0.2) 50%, transparent 100%);
  opacity: 0.3;
  filter: blur(48px);
  z-index: 0;
  animation: sunPulse 4s ease-in-out infinite; }

/* Animación de pulso del sol */
@keyframes sunPulse {
  0%, 100% {
    opacity: 0.3;
    transform: translateX(-50%) scale(1); }
  50% {
    opacity: 0.4;
    transform: translateX(-50%) scale(1.05); } }
/* ===========================
   VARIANTES DE INTENSIDAD
   =========================== */
/* Versión sutil (para páginas de lectura) */
body.bg-subtle .moving-grid {
  opacity: 0.3;
  background-image: linear-gradient(to right, rgba(0, 240, 255, 0.15) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 240, 255, 0.15) 1px, transparent 1px); }
body.bg-subtle .synthwave-sun {
  opacity: 0.15; }
body.bg-subtle .bottom-glow {
  opacity: 0.5; }

/* Versión intensa (para homepage) */
body.bg-intense .moving-grid {
  opacity: 1;
  background-image: linear-gradient(to right, rgba(0, 240, 255, 0.3) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 240, 255, 0.3) 1px, transparent 1px); }
body.bg-intense .synthwave-sun {
  opacity: 0.5;
  width: 20rem;
  height: 20rem; }
body.bg-intense .bottom-glow {
  background: linear-gradient(to top, rgba(255, 0, 255, 0.2) 0%, rgba(0, 240, 255, 0.15) 50%, transparent 100%); }

/* Sin sol (para páginas limpias) */
body.bg-no-sun .synthwave-sun {
  display: none; }

/* ===========================
   ACCESIBILIDAD
   =========================== */
/* Reducir animaciones para usuarios con preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  .moving-grid,
  .synthwave-sun {
    animation: none; } }
/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .moving-grid {
    background-size: 30px 30px;
    animation-duration: 1.5s; }

  .synthwave-sun {
    width: 12rem;
    height: 12rem;
    top: 3rem; }

  body.bg-intense .synthwave-sun {
    width: 14rem;
    height: 14rem; } }
@media (max-width: 480px) {
  .moving-grid {
    background-size: 20px 20px;
    animation-duration: 1s; }

  .synthwave-sun {
    width: 8rem;
    height: 8rem;
    top: 2rem; }

  body.bg-intense .synthwave-sun {
    width: 10rem;
    height: 10rem; }

  .bottom-glow {
    height: 40%; } }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  position: relative; }

.main-header,
main,
.breadcrumb,
.main-footer,
section {
  position: relative;
  z-index: 1; }

.main-header {
  background-color: #0a0a0a;
  border-bottom: 2px solid #00ffff;
  position: sticky;
  top: 0;
  z-index: 1000; }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto; }

.logo h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.5rem;
  color: #00ffff;
  font-weight: bold;
  letter-spacing: 2px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0; }

.hamburger {
  width: 25px;
  height: 3px;
  background-color: #00ffff;
  margin: 3px 0;
  transition: 0.3s; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem; }
  .nav-menu li {
    position: relative; }
  .nav-menu a {
    color: #fff;
    text-decoration: none;
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    display: block;
    text-transform: uppercase;
    font-weight: 500; }
    .nav-menu a:hover {
      color: #ff00ff; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1a1a1a;
  border: 1px solid #00ffff;
  list-style: none;
  min-width: 200px;
  padding: 0.5rem 0; }

.dropdown:hover .dropdown-menu {
  display: block; }

.dropdown-menu a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem; }
  .dropdown-menu a:hover {
    background-color: #2a2a2a; }

@media (max-width: 768px) {
  .menu-toggle {
    display: flex; }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #0a0a0a;
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    display: none;
    border-top: 1px solid #00ffff; }
    .nav-menu.active {
      display: flex; }

  .dropdown-menu {
    position: static;
    display: none;
    border: none;
    margin-left: 1rem;
    padding: 0; }

  .dropdown.active .dropdown-menu {
    display: block; } }
@media (max-width: 480px) {
  .navbar {
    padding: 1rem; } }
.main-footer {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 5, 32, 0.98) 100%);
  border-top: 3px solid #00ffff;
  position: relative;
  overflow: hidden; }
  .main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg, transparent 0px, rgba(255, 0, 255, 0.03) 1px, transparent 2px, transparent 30px), repeating-linear-gradient(90deg, transparent 0px, rgba(0, 255, 255, 0.03) 1px, transparent 2px, transparent 30px);
    pointer-events: none; }

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  position: relative;
  z-index: 1; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  margin-bottom: 3rem; }

.footer-column:first-child {
  padding-right: 2rem; }

.footer-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  background: linear-gradient(90deg, #00ffff 0%, #ff00ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px; }

.footer-description {
  font-family: "Inter", sans-serif;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2rem; }

.footer-heading {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
  color: #00ffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px; }

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0; }
  .footer-links li {
    margin-bottom: 0.5rem; }
  .footer-links a {
    font-family: "Inter", sans-serif;
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block; }
    .footer-links a:hover {
      color: #ff00ff;
      transform: translateX(5px); }

.footer-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap; }

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none; }
  .social-link svg {
    width: 20px;
    height: 20px; }
  .social-link:hover {
    transform: translateY(-5px); }
  .social-link--twitter {
    background-color: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    border: 1px solid #00ffff; }
    .social-link--twitter:hover {
      background-color: #00ffff;
      color: #000;
      box-shadow: 0 5px 20px rgba(0, 255, 255, 0.5); }
  .social-link--facebook {
    background-color: rgba(0, 136, 255, 0.2);
    color: #0088ff;
    border: 1px solid #0088ff; }
    .social-link--facebook:hover {
      background-color: #0088ff;
      color: #000;
      box-shadow: 0 5px 20px rgba(0, 136, 255, 0.5); }
  .social-link--youtube {
    background-color: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border: 1px solid #ff0000; }
    .social-link--youtube:hover {
      background-color: #ff0000;
      color: #fff;
      box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5); }
  .social-link--instagram {
    background-color: rgba(255, 0, 255, 0.2);
    color: #ff00ff;
    border: 1px solid #ff00ff; }
    .social-link--instagram:hover {
      background-color: #ff00ff;
      color: #000;
      box-shadow: 0 5px 20px rgba(255, 0, 255, 0.5); }

.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
  border: 2px solid;
  border-image: linear-gradient(90deg, #ff00ff 0%, #00ffff 100%) 1;
  border-radius: 12px;
  margin-bottom: 3rem; }

.newsletter-content {
  flex: 1; }

.newsletter-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.5rem; }

.newsletter-text {
  font-family: "Inter", sans-serif;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.4; }

.newsletter-form {
  display: flex;
  gap: 1rem;
  flex: 1;
  max-width: 500px; }

.newsletter-input {
  flex: 1;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #00ffff;
  border-radius: 8px;
  color: #fff;
  font-family: "Space Mono", monospace;
  font-size: 0.9rem;
  transition: all 0.3s ease; }
  .newsletter-input::placeholder {
    color: #888; }
  .newsletter-input:focus {
    outline: none;
    border-color: #ff00ff;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5); }

.newsletter-button {
  padding: 1rem 3rem;
  background: linear-gradient(90deg, #ff00ff 0%, #00ffff 100%);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap; }
  .newsletter-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.6); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 255, 0.2); }

.footer-bottom-content {
  flex: 1; }

.footer-copyright {
  font-family: "Inter", sans-serif;
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 0.5rem; }

.footer-tagline {
  font-family: "Space Mono", monospace;
  color: #00ffff;
  font-size: 0.9rem; }

.footer-vhs {
  display: flex;
  align-items: center;
  gap: 1rem; }

.vhs-icon {
  width: 80px;
  height: 30px;
  color: #ff00ff;
  filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.6)); }

.vhs-text {
  font-family: "Rajdhani", sans-serif;
  color: #ff00ff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px; }

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem; }

  .footer-column:first-child {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 1rem; }

  .footer-newsletter {
    flex-direction: column;
    text-align: center;
    gap: 2rem; }

  .newsletter-content {
    width: 100%; }

  .newsletter-form {
    max-width: 100%;
    width: 100%; } }
@media (max-width: 768px) {
  .footer-container {
    padding: 2rem; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem; }

  .footer-column:first-child {
    margin-bottom: 0; }

  .footer-title {
    font-size: 1.5rem; }

  .footer-heading {
    font-size: 1rem; }

  .footer-newsletter {
    padding: 2rem;
    gap: 1rem; }

  .newsletter-title {
    font-size: 1.1rem; }

  .newsletter-text {
    font-size: 0.85rem; }

  .newsletter-form {
    flex-direction: column;
    gap: 1rem; }

  .newsletter-button {
    width: 100%;
    padding: 1rem; }

  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center; }

  .footer-bottom-content {
    width: 100%; }

  .footer-vhs {
    justify-content: center; }

  .footer-social {
    justify-content: center; } }
@media (max-width: 480px) {
  .footer-title {
    font-size: 1.3rem;
    letter-spacing: 1px; }

  .newsletter-title {
    font-size: 1rem; }

  .newsletter-text {
    font-size: 0.8rem; }

  .social-link {
    width: 35px;
    height: 35px; }
    .social-link svg {
      width: 18px;
      height: 18px; }

  .vhs-icon {
    width: 60px;
    height: 24px; }

  .vhs-text {
    font-size: 0.8rem; }

  .footer-copyright,
  .footer-tagline {
    font-size: 0.8rem; } }
.homeHero-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 100%);
  padding: 3rem 2rem;
  border: 3px solid #00ffff;
  margin: 2rem auto;
  position: relative;
  overflow: hidden; }
  .homeHero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg, rgba(0, 255, 255, 0.03) 0px, transparent 1px, transparent 2px, rgba(0, 255, 255, 0.03) 3px), repeating-linear-gradient(90deg, rgba(0, 255, 255, 0.03) 0px, transparent 1px, transparent 2px, rgba(0, 255, 255, 0.03) 3px);
    pointer-events: none; }

.homeHero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1; }

.homeHero-content {
  padding: 1rem; }

.homeHero-badge {
  display: inline-block;
  background: linear-gradient(90deg, #00ffff 0%, #0088ff 100%);
  color: #000;
  font-family: "Rajdhani", sans-serif;
  font-weight: bold;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase; }

.homeHero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  background: linear-gradient(90deg, #ff00ff 0%, #ff0080 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px; }

.homeHero-meta {
  margin-bottom: 1rem;
  color: #00ffff; }

.rating {
  font-family: "Space Mono", monospace;
  font-size: 1rem;
  font-weight: bold; }

.homeHero-description {
  font-family: "Inter", sans-serif;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.95rem; }
  .homeHero-description strong {
    color: #00ffff;
    font-family: "Space Mono", monospace; }

.homeHero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap; }

.btn {
  font-family: "Rajdhani", sans-serif;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px; }
  .btn-primary {
    background-color: #00ffff;
    color: #000;
    border: 2px solid #00ffff; }
    .btn-primary:hover {
      background-color: transparent;
      color: #00ffff; }
  .btn-secondary {
    background-color: transparent;
    color: #ff00ff;
    border: 2px solid #ff00ff; }
    .btn-secondary:hover {
      background-color: #ff00ff;
      color: #000; }

.homeHero-image {
  position: relative;
  border: 3px solid #ff00ff;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
  border-radius: 8px;
  overflow: hidden; }
  .homeHero-image img {
    width: 100%;
    height: auto;
    display: block; }

@media (max-width: 768px) {
  .homeHero-container {
    grid-template-columns: 1fr;
    gap: 2rem; }

  .homeHero-title {
    font-size: 2.5rem; }

  .homeHero-image {
    order: -1; }

  .homeHero-buttons {
    flex-direction: column; }

  .btn {
    width: 100%; } }
@media (max-width: 480px) {
  .homeHero-title {
    font-size: 2rem; }

  .navbar {
    padding: 1rem; }

  .homeHero-section {
    margin: 1rem;
    padding: 2rem 1rem; } }
.featured-reviews {
  background-color: rgba(10, 10, 10, 0.5);
  padding: 3rem 2rem; }
  .featured-reviews h2 {
    text-align: center;
    margin-bottom: 3rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem; }

.review-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 360px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 0, 51, 0.9) 100%); }
  .review-card:hover {
    transform: translateY(-5px); }
    .review-card:hover .review-glitch {
      opacity: 0.1; }
    .review-card:hover .review-content {
      background-color: #130923; }
  .review-card--magenta {
    border: 3px solid #ff00ff;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3); }
    .review-card--magenta:hover {
      box-shadow: 0 5px 30px rgba(255, 0, 255, 0.6); }
  .review-card--cyan {
    border: 3px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3); }
    .review-card--cyan:hover {
      box-shadow: 0 5px 30px rgba(0, 255, 255, 0.6); }
  .review-card--green {
    border: 3px solid #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3); }
    .review-card--green:hover {
      box-shadow: 0 5px 30px rgba(0, 255, 0, 0.6); }
  .review-card--yellow {
    border: 3px solid #ffff00;
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.3); }
    .review-card--yellow:hover {
      box-shadow: 0 5px 30px rgba(255, 255, 0, 0.6); }
  .review-card--featured .review-title--large {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem; }
  .review-card--featured .review-subtitle {
    font-size: 1.1rem; }
  .review-card--featured .review-content {
    padding: 2rem 1rem; }

.review-image {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden; }
  .review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; }

.review-glitch {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, rgba(0, 255, 255, 0.03) 0px, transparent 2px, transparent 4px, rgba(0, 255, 255, 0.03) 6px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease; }

.review-content {
  padding: 1rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(19, 9, 35, 0.85);
  transition: all 0.3s ease; }

.review-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
  text-transform: capitalize; }
  .review-title--large {
    background: linear-gradient(90deg, #00ffff 0%, #0088ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem; }

.review-subtitle {
  font-family: "Space Mono", monospace;
  color: #00ffff;
  font-size: 0.9rem;
  margin-bottom: 0.3rem; }

.review-meta {
  font-family: "Inter", sans-serif;
  color: #ccc;
  font-size: 0.8rem;
  margin-bottom: 1rem; }

.review-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.5rem; }
  .review-tag--magenta {
    background-color: rgba(255, 0, 255, 0.2);
    color: #ff00ff;
    border: 1px solid #ff00ff; }

.review-ratings {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem; }

.rating-badge {
  font-family: "Space Mono", monospace;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.85rem; }
  .rating-badge--green {
    background-color: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid #00ff00; }

.btn-outline {
  background-color: transparent;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 0.5rem;
  transition: all 0.3s ease; }
  .btn-outline--cyan {
    color: #00ffff;
    border: 2px solid #00ffff; }
    .btn-outline--cyan:hover {
      background-color: #00ffff;
      color: #000; }
  .btn-outline--green {
    color: #00ff00;
    border: 2px solid #00ff00; }
    .btn-outline--green:hover {
      background-color: #00ff00;
      color: #000; }
  .btn-outline--yellow {
    color: #ffff00;
    border: 2px solid #ffff00; }
    .btn-outline--yellow:hover {
      background-color: #ffff00;
      color: #000; }

.reviews-footer {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem; }

.reviews-footer-text {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 2rem; }

.btn-large {
  padding: 1rem 2.5rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s ease;
  letter-spacing: 1px; }
  .btn-large--magenta {
    background-color: #ff00ff;
    color: #fff;
    border: 3px solid #ff00ff;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4); }
    .btn-large--magenta:hover {
      background-color: transparent;
      color: #ff00ff;
      box-shadow: 0 0 30px rgba(255, 0, 255, 0.6); }

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto; } }
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem; }

  .review-title--large {
    font-size: 1.5rem !important; }

  .reviews-footer-text {
    font-size: 1rem; } }
.latest-news {
  background-color: rgba(10, 10, 10, 0.3);
  padding: 3rem 2rem; }
  .latest-news h2 {
    text-align: center;
    background: linear-gradient(90deg, #ff00ff 0%, #ff0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem; }

.section-subtitle {
  font-family: "Inter", sans-serif;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 3rem; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem; }

.news-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 0, 51, 0.95) 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .news-card:hover {
    transform: translateY(-8px); }
    .news-card:hover .news-glitch {
      opacity: 0.15; }
  .news-card--magenta {
    border: 3px solid #ff00ff;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4); }
    .news-card--magenta:hover {
      box-shadow: 0 8px 40px rgba(255, 0, 255, 0.7); }
  .news-card--cyan {
    border: 3px solid #00ffff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4); }
    .news-card--cyan:hover {
      box-shadow: 0 8px 40px rgba(0, 255, 255, 0.7); }
  .news-card--green {
    border: 3px solid #00ff00;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.4); }
    .news-card--green:hover {
      box-shadow: 0 8px 40px rgba(0, 255, 0, 0.7); }

.news-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%); }
  .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; }

.news-glitch {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, rgba(0, 255, 255, 0.05) 0px, transparent 2px, transparent 4px, rgba(0, 255, 255, 0.05) 6px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease; }

.news-content {
  padding: 2rem; }

.news-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: capitalize; }

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem; }

.news-author {
  font-family: "Space Mono", monospace;
  font-size: 0.9rem;
  color: #00ffff; }

.news-icon {
  font-size: 1rem; }

.news-excerpt {
  font-family: "Inter", sans-serif;
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 2rem; }

.btn-outline--magenta {
  color: #ff00ff;
  border: 2px solid #ff00ff; }
  .btn-outline--magenta:hover {
    background-color: #ff00ff;
    color: #000; }

.news-footer {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem; }

.btn-large--cyan {
  background-color: transparent;
  color: #00ffff;
  border: 3px solid #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4); }
  .btn-large--cyan:hover {
    background-color: #00ffff;
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6); }

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr); }

  .news-card:last-child {
    grid-column: span 2; } }
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr; }

  .news-card:last-child {
    grid-column: span 1; }

  .section-subtitle {
    font-size: 1rem; }

  .news-title {
    font-size: 1.3rem; } }
.movies-genre {
  background-color: rgba(10, 10, 10, 0.5);
  padding: 3rem 2rem;
  text-align: center; }

.genre-pretitle {
  font-family: "Inter", sans-serif;
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px; }

.movies-genre h2 {
  background: linear-gradient(90deg, #00ffff 0%, #0088ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3rem;
  margin-bottom: 1rem;
  border: none;
  padding: 0; }

.genre-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem; }

.genre-card {
  position: relative;
  padding: 3rem 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 0, 51, 0.9) 100%);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer; }
  .genre-card:hover {
    transform: translateY(-10px) scale(1.02); }
    .genre-card:hover .genre-icon {
      transform: scale(1.1) rotate(5deg); }
  .genre-card--magenta {
    border: 3px solid #ff00ff;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4); }
    .genre-card--magenta:hover {
      box-shadow: 0 10px 50px rgba(255, 0, 255, 0.8); }
    .genre-card--magenta .genre-icon {
      color: #ff00ff; }
    .genre-card--magenta .genre-count {
      border-color: #ff00ff;
      color: #ff00ff; }
  .genre-card--cyan {
    border: 3px solid #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4); }
    .genre-card--cyan:hover {
      box-shadow: 0 10px 50px rgba(0, 255, 255, 0.8); }
    .genre-card--cyan .genre-icon {
      color: #00ffff; }
    .genre-card--cyan .genre-count {
      border-color: #00ffff;
      color: #00ffff; }
  .genre-card--yellow {
    border: 3px solid #ffff00;
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.4); }
    .genre-card--yellow:hover {
      box-shadow: 0 10px 50px rgba(255, 255, 0, 0.8); }
    .genre-card--yellow .genre-icon {
      color: #ffff00; }
    .genre-card--yellow .genre-count {
      border-color: #ffff00;
      color: #ffff00; }
  .genre-card--purple {
    border: 3px solid #a855f7;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4); }
    .genre-card--purple:hover {
      box-shadow: 0 10px 50px rgba(168, 85, 247, 0.8); }
    .genre-card--purple .genre-icon {
      color: #a855f7; }
    .genre-card--purple .genre-count {
      border-color: #a855f7;
      color: #a855f7; }

.genre-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  transition: transform 0.3s ease; }
  .genre-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px currentColor); }

.genre-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: capitalize; }

.genre-description {
  font-family: "Inter", sans-serif;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  min-height: 3rem; }

.genre-count {
  font-family: "Space Mono", monospace;
  font-size: 0.95rem;
  font-weight: bold;
  padding: 0.5rem 2rem;
  border: 2px solid;
  border-radius: 25px;
  background-color: transparent;
  transition: all 0.3s ease; }

.genre-footer {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem; }

.btn-large--magenta-outline {
  background-color: transparent;
  color: #ff00ff;
  border: 3px solid #ff00ff;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.4); }
  .btn-large--magenta-outline:hover {
    background-color: #ff00ff;
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6); }

@media (max-width: 1024px) {
  .genre-grid {
    grid-template-columns: repeat(2, 1fr); }

  .movies-genre h2 {
    font-size: 2.5rem; } }
@media (max-width: 768px) {
  .genre-grid {
    grid-template-columns: 1fr;
    gap: 1rem; }

  .movies-genre h2 {
    font-size: 2rem; }

  .genre-icon {
    width: 100px;
    height: 100px; }

  .genre-title {
    font-size: 1.4rem; } }
.top-movies {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 5, 32, 0.95) 100%);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden; }
  .top-movies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg, transparent 0px, rgba(0, 255, 255, 0.02) 1px, transparent 2px, transparent 20px);
    pointer-events: none; }
  .top-movies h2 {
    text-align: center;
    background: linear-gradient(90deg, #ff00ff 0%, #ff0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1; }
  .top-movies .section-subtitle {
    position: relative;
    z-index: 1; }

.rankings-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1; }

.ranking-column {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 0, 51, 0.8) 100%);
  border-radius: 16px;
  padding: 3rem; }
  .ranking-column--cyan {
    border: 3px solid #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3); }
  .ranking-column--magenta {
    border: 3px solid #ff00ff;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3); }

.ranking-header {
  text-align: center;
  margin-bottom: 3rem; }

.ranking-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem; }
  .ranking-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px currentColor); }
  .ranking-column--cyan .ranking-icon {
    color: #00ffff; }
  .ranking-column--magenta .ranking-icon {
    color: #ff00ff; }

.ranking-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-transform: capitalize; }

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 1rem; }

.ranking-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease; }
  .ranking-item:hover {
    transform: translateX(10px); }
    .ranking-item:hover .ranking-movie {
      border-color: #fff;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }

.ranking-number {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  min-width: 60px;
  text-align: center; }
  .ranking-column--cyan .ranking-number {
    background: linear-gradient(90deg, #00ffff 0%, #0088ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; }
  .ranking-column--magenta .ranking-number {
    background: linear-gradient(90deg, #ff00ff 0%, #ff0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; }

.ranking-movie {
  position: relative;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  transition: all 0.3s ease; }
  .ranking-column--cyan .ranking-movie {
    border: 3px solid #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4); }
  .ranking-column--magenta .ranking-movie {
    border: 3px solid #ff00ff;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4); }
  .ranking-movie img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; }

.ranking-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end; }

.movie-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2; }

.movie-rating {
  font-family: "Space Mono", monospace;
  font-size: 1rem;
  font-weight: bold;
  color: #00ff00;
  background-color: rgba(0, 255, 0, 0.2);
  border: 1px solid #00ff00;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap; }

.ranking-separator {
  width: 2px;
  background: linear-gradient(to bottom, transparent 0%, #00ffff 20%, #ff00ff 50%, #00ffff 80%, transparent 100%);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }

.top-footer {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  position: relative;
  z-index: 1; }

@media (max-width: 1024px) {
  .rankings-container {
    grid-template-columns: 1fr;
    gap: 3rem; }

  .ranking-separator {
    display: none; }

  .top-movies h2 {
    font-size: 2.2rem; } }
@media (max-width: 768px) {
  .top-movies h2 {
    font-size: 1.8rem; }

  .ranking-number {
    font-size: 2.5rem;
    min-width: 50px; }

  .ranking-icon {
    width: 60px;
    height: 60px; }

  .ranking-title {
    font-size: 1.2rem; }

  .movie-title {
    font-size: 0.75rem; }

  .movie-rating {
    font-size: 0.85rem; } }
.forum-section {
  background-color: rgba(10, 10, 10, 0.6);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden; }
  .forum-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg, transparent 0px, rgba(255, 0, 255, 0.03) 1px, transparent 2px, transparent 15px);
    pointer-events: none; }
  .forum-section h2 {
    text-align: center;
    background: linear-gradient(90deg, #00ff00 0%, #ffff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1; }
  .forum-section .section-subtitle {
    position: relative;
    z-index: 1; }

.forum-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1; }

.forum-card {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 0, 51, 0.95) 100%);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative; }
  .forum-card:hover {
    transform: translateY(-8px) scale(1.02); }
  .forum-card--cyan {
    border: 3px solid #00ffff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4); }
    .forum-card--cyan:hover {
      box-shadow: 0 8px 40px rgba(0, 255, 255, 0.7); }
  .forum-card--magenta {
    border: 3px solid #ff00ff;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4); }
    .forum-card--magenta:hover {
      box-shadow: 0 8px 40px rgba(255, 0, 255, 0.7); }
  .forum-card--gray {
    border: 3px solid #9ca3af;
    box-shadow: 0 0 25px rgba(156, 163, 175, 0.4); }
    .forum-card--gray:hover {
      box-shadow: 0 8px 40px rgba(156, 163, 175, 0.7); }
  .forum-card--green {
    border: 3px solid #00ff00;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.4); }
    .forum-card--green:hover {
      box-shadow: 0 8px 40px rgba(0, 255, 0, 0.7); }
  .forum-card--yellow {
    border: 3px solid #ffff00;
    box-shadow: 0 0 25px rgba(255, 255, 0, 0.4); }
    .forum-card--yellow:hover {
      box-shadow: 0 8px 40px rgba(255, 255, 0, 0.7); }

.forum-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem; }

.forum-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #00ffff;
  object-fit: cover; }

.forum-user {
  font-family: "Space Mono", monospace;
  font-size: 0.9rem;
  color: #fff;
  flex: 1; }

.forum-menu {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.3s ease; }
  .forum-menu:hover {
    color: #00ffff; }

.forum-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.3;
  min-height: 3.5rem; }

.forum-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem; }

.forum-time {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: #00ffff; }

.forum-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem; }

.forum-tag {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: lowercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background-color: rgba(255, 0, 255, 0.2);
  color: #ff00ff;
  border: 1px solid #ff00ff; }
  .forum-tag--green {
    background-color: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border-color: #00ff00; }

.forum-comments {
  font-size: 1.2rem;
  color: #00ff00; }

.forum-activity {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1); }

.activity-label {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: #ccc;
  display: block;
  margin-bottom: 0.5rem; }

.activity-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  border-radius: 8px; }

.activity-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #00ffff;
  object-fit: cover; }

.activity-name {
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
  color: #fff; }

.forum-footer {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  position: relative;
  z-index: 1; }

.forum-footer-text {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 2rem; }

.btn-large--cyan-magenta {
  background: linear-gradient(90deg, #00ffff 0%, #ff00ff 100%);
  color: #fff;
  border: 3px solid #00ffff;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.5); }
  .btn-large--cyan-magenta:hover {
    background: linear-gradient(90deg, #ff00ff 0%, #00ffff 100%);
    border-color: #ff00ff;
    box-shadow: 0 0 35px rgba(255, 0, 255, 0.7); }

@media (max-width: 1200px) {
  .forum-grid {
    grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1024px) {
  .forum-grid {
    grid-template-columns: repeat(2, 1fr); }

  .forum-section h2 {
    font-size: 2.2rem; } }
@media (max-width: 768px) {
  .forum-grid {
    grid-template-columns: 1fr;
    gap: 1rem; }

  .forum-section h2 {
    font-size: 1.8rem; }

  .forum-title {
    font-size: 1rem;
    min-height: auto; }

  .forum-footer-text {
    font-size: 1rem; } }
.games-section {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden; }
  .games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg, transparent 0px, rgba(0, 255, 255, 0.02) 1px, transparent 2px, transparent 40px), repeating-linear-gradient(90deg, transparent 0px, rgba(255, 0, 255, 0.02) 1px, transparent 2px, transparent 40px);
    pointer-events: none; }
  .games-section h2 {
    text-align: center;
    background: linear-gradient(90deg, #ff00ff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1; }
  .games-section .section-subtitle {
    position: relative;
    z-index: 1; }

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1; }

.game-card {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 0, 51, 0.95) 100%);
  border-radius: 20px;
  padding: 3rem;
  transition: all 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; }
  .game-card:hover {
    transform: translateY(-12px) rotate(-2deg); }
    .game-card:hover .game-icon {
      transform: scale(1.15) rotate(10deg); }
  .game-card--magenta {
    border: 3px solid #ff00ff;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4); }
    .game-card--magenta:hover {
      box-shadow: 0 12px 50px rgba(255, 0, 255, 0.8); }
  .game-card--cyan {
    border: 3px solid #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4); }
    .game-card--cyan:hover {
      box-shadow: 0 12px 50px rgba(0, 255, 255, 0.8); }
  .game-card--green {
    border: 3px solid #00ff00;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.4); }
    .game-card--green:hover {
      box-shadow: 0 12px 50px rgba(0, 255, 0, 0.8); }
  .game-card--yellow {
    border: 3px solid #ffff00;
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.4); }
    .game-card--yellow:hover {
      box-shadow: 0 12px 50px rgba(255, 255, 0, 0.8); }

.game-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
  transition: transform 0.4s ease; }
  .game-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px currentColor); }
  .game-card--magenta .game-icon {
    color: #ff00ff; }
  .game-card--cyan .game-icon {
    color: #00ffff; }
  .game-card--green .game-icon {
    color: #00ff00; }
  .game-card--yellow .game-icon {
    color: #ffff00; }

.game-title {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px; }

.game-description {
  font-family: "Inter", sans-serif;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex: 1; }

.game-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin-bottom: 2rem; }

.game-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Space Mono", monospace;
  font-size: 0.9rem;
  color: #00ffff;
  background-color: rgba(0, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 255, 0.3); }

.stat-icon {
  font-size: 1.2rem; }

.stat-value {
  font-size: 0.85rem; }

.games-footer {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  position: relative;
  z-index: 1; }

.games-footer-text {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto; }

@media (max-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: 1fr;
    gap: 2rem; }

  .games-section h2 {
    font-size: 2.2rem; }

  .game-title {
    font-size: 1.5rem; }

  .game-icon {
    width: 80px;
    height: 80px; }

  .games-footer-text {
    font-size: 1rem; } }
.shop-section {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden; }
  .shop-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, transparent 0px, rgba(0, 255, 255, 0.02) 1px, transparent 2px, transparent 40px), repeating-linear-gradient(-45deg, transparent 0px, rgba(255, 0, 255, 0.02) 1px, transparent 2px, transparent 40px);
    pointer-events: none; }
  .shop-section h2 {
    text-align: center;
    background: linear-gradient(90deg, #00ffff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1; }
  .shop-section .section-subtitle {
    position: relative;
    z-index: 1; }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1; }

.product-card {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 0, 51, 0.95) 100%);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative; }
  .product-card:hover {
    transform: translateY(-8px); }
    .product-card:hover .product-overlay {
      opacity: 1; }
    .product-card:hover .product-image img {
      transform: scale(1.1); }
  .product-card--cyan {
    border: 3px solid #00ffff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3); }
    .product-card--cyan:hover {
      box-shadow: 0 8px 40px rgba(0, 255, 255, 0.6); }
  .product-card--magenta {
    border: 3px solid #ff00ff;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.3); }
    .product-card--magenta:hover {
      box-shadow: 0 8px 40px rgba(255, 0, 255, 0.6); }
  .product-card--green {
    border: 3px solid #00ff00;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.3); }
    .product-card--green:hover {
      box-shadow: 0 8px 40px rgba(0, 255, 0, 0.6); }
  .product-card--yellow {
    border: 3px solid #ffff00;
    box-shadow: 0 0 25px rgba(255, 255, 0, 0.3); }
    .product-card--yellow:hover {
      box-shadow: 0 8px 40px rgba(255, 255, 0, 0.6); }
  .product-card--purple {
    border: 3px solid #a855f7;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.3); }
    .product-card--purple:hover {
      box-shadow: 0 8px 40px rgba(168, 85, 247, 0.6); }

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #00ffff;
  color: #000;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 255, 255, 0.5); }
  .product-badge--hot {
    background-color: #ff4500;
    color: #fff;
    box-shadow: 0 2px 10px rgba(255, 69, 0, 0.5); }
  .product-badge--exclusive {
    background-color: #ffd700;
    color: #000;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5); }

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5); }
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; }

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease; }

.quick-view-btn {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid #fff;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0.5rem 2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease; }
  .quick-view-btn:hover {
    background-color: #fff;
    color: #000; }

.product-content {
  padding: 2rem; }

.product-category {
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  color: #00ffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem; }

.product-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  min-height: 2.6rem; }

.product-description {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: #ccc;
  line-height: 1.4;
  margin-bottom: 1rem;
  min-height: 2.4rem; }

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.5rem; }

.product-price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem; }

.price-current {
  font-family: "Orbitron", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: #00ff00; }

.price-old {
  font-family: "Space Mono", monospace;
  font-size: 0.9rem;
  color: #888;
  text-decoration: line-through; }

.btn-small {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap; }
  .btn-small--cyan {
    background-color: transparent;
    color: #00ffff;
    border: 2px solid #00ffff; }
    .btn-small--cyan:hover {
      background-color: #00ffff;
      color: #000; }
  .btn-small--magenta {
    background-color: transparent;
    color: #ff00ff;
    border: 2px solid #ff00ff; }
    .btn-small--magenta:hover {
      background-color: #ff00ff;
      color: #000; }
  .btn-small--green {
    background-color: transparent;
    color: #00ff00;
    border: 2px solid #00ff00; }
    .btn-small--green:hover {
      background-color: #00ff00;
      color: #000; }
  .btn-small--yellow {
    background-color: transparent;
    color: #ffff00;
    border: 2px solid #ffff00; }
    .btn-small--yellow:hover {
      background-color: #ffff00;
      color: #000; }
  .btn-small--purple {
    background-color: transparent;
    color: #a855f7;
    border: 2px solid #a855f7; }
    .btn-small--purple:hover {
      background-color: #a855f7;
      color: #000; }

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem; }

.stars {
  color: #ffd700;
  letter-spacing: 2px; }

.rating-count {
  font-family: "Inter", sans-serif;
  color: #888;
  font-size: 0.8rem; }

.shop-categories {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
  border-radius: 16px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  position: relative;
  z-index: 1; }

.categories-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem; }

.category-link {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase; }
  .category-link--cyan {
    background-color: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    border: 2px solid #00ffff; }
    .category-link--cyan:hover {
      background-color: #00ffff;
      color: #000;
      transform: translateY(-3px); }
  .category-link--magenta {
    background-color: rgba(255, 0, 255, 0.2);
    color: #ff00ff;
    border: 2px solid #ff00ff; }
    .category-link--magenta:hover {
      background-color: #ff00ff;
      color: #000;
      transform: translateY(-3px); }
  .category-link--green {
    background-color: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 2px solid #00ff00; }
    .category-link--green:hover {
      background-color: #00ff00;
      color: #000;
      transform: translateY(-3px); }
  .category-link--yellow {
    background-color: rgba(255, 255, 0, 0.2);
    color: #ffff00;
    border: 2px solid #ffff00; }
    .category-link--yellow:hover {
      background-color: #ffff00;
      color: #000;
      transform: translateY(-3px); }
  .category-link--purple {
    background-color: rgba(168, 85, 247, 0.2);
    color: #a855f7;
    border: 2px solid #a855f7; }
    .category-link--purple:hover {
      background-color: #a855f7;
      color: #000;
      transform: translateY(-3px); }

.shop-footer {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  position: relative;
  z-index: 1; }

.shop-footer-text {
  font-family: "Inter", sans-serif;
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6; }
  .shop-footer-text strong {
    color: #fff; }

.btn-large--shop {
  background: linear-gradient(90deg, #00ff00 0%, #00ffff 100%);
  color: #000;
  border: 3px solid #00ff00;
  box-shadow: 0 0 25px rgba(0, 255, 0, 0.5); }
  .btn-large--shop:hover {
    background: linear-gradient(90deg, #00ffff 0%, #00ff00 100%);
    box-shadow: 0 0 35px rgba(0, 255, 255, 0.7);
    transform: scale(1.05); }

@media (max-width: 1200px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr); }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr); }

  .shop-section h2 {
    font-size: 2.5rem; } }
@media (max-width: 768px) {
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 1rem; }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr); }

  .shop-section h2 {
    font-size: 2rem; }

  .product-footer {
    flex-direction: column;
    align-items: flex-start; }

  .btn-small {
    width: 100%;
    text-align: center; }

  .shop-footer-text {
    font-size: 0.85rem; } }
.vip-teaser {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.95) 0%, rgba(10, 5, 32, 0.95) 100%);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden; }
  .vip-teaser::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 30%), radial-gradient(circle at 70% 50%, rgba(255, 0, 255, 0.08) 0%, transparent 30%);
    pointer-events: none;
    animation: vipGlowTeaser 15s ease-in-out infinite; }
  .vip-teaser::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg, transparent 0px, rgba(255, 215, 0, 0.02) 1px, transparent 2px, transparent 30px);
    pointer-events: none; }

@keyframes vipGlowTeaser {
  0%, 100% {
    transform: rotate(0deg); }
  50% {
    transform: rotate(180deg); } }
.vip-teaser-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1; }

.vip-teaser-header {
  text-align: center;
  margin-bottom: 3rem; }

.vip-crown-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  color: #ffd700;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.7));
  animation: crownFloatTeaser 3s ease-in-out infinite; }
  .vip-crown-icon svg {
    width: 100%;
    height: 100%; }

@keyframes crownFloatTeaser {
  0%, 100% {
    transform: translateY(0px); }
  50% {
    transform: translateY(-8px); } }
.vip-teaser-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px; }

.vip-teaser-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  color: #ccc; }

.vip-quick-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem; }

.quick-benefit {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 0, 51, 0.9) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer; }
  .quick-benefit:hover {
    border-color: #ffd700;
    box-shadow: 0 5px 30px rgba(255, 215, 0, 0.4);
    transform: translateY(-5px); }

.benefit-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem; }

.benefit-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 0.5rem;
  text-transform: uppercase; }

.benefit-text {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: #ccc;
  line-height: 1.4; }

.vip-pricing-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem; }

.price-card {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 0, 51, 0.95) 100%);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease; }
  .price-card:hover {
    transform: translateY(-8px); }
  .price-card--monthly {
    border: 3px solid #00ffff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3); }
    .price-card--monthly:hover {
      box-shadow: 0 8px 40px rgba(0, 255, 255, 0.5); }
  .price-card--annual {
    border: 3px solid #ffd700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3); }
    .price-card--annual:hover {
      box-shadow: 0 8px 40px rgba(255, 215, 0, 0.6); }
  .price-card--lifetime {
    border: 3px solid #ff00ff;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.3); }
    .price-card--lifetime:hover {
      box-shadow: 0 8px 40px rgba(255, 0, 255, 0.5); }
  .price-card--featured {
    transform: scale(1.05);
    z-index: 2; }

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff4500;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(255, 69, 0, 0.5); }

.price-header {
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

.price-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  color: #ccc;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem; }

.price-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.5rem; }

.price-number {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #ffd700;
  line-height: 1; }

.price-period {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  color: #ccc; }

.price-save {
  font-family: "Space Mono", monospace;
  font-size: 0.8rem;
  color: #00ff00;
  display: block; }

.price-features {
  list-style: none;
  padding: 0;
  margin: 0; }
  .price-features li {
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    color: #ccc;
    padding: 0.3rem 0;
    line-height: 1.4; }

.vip-teaser-cta {
  text-align: center; }

.btn-large--vip-gold {
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  color: #000;
  border: 3px solid #ffd700;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  font-size: 1.2rem;
  padding: 2rem 6rem; }
  .btn-large--vip-gold:hover {
    transform: scale(1.08);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8); }

.vip-teaser-note {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 1rem; }

@media (max-width: 1024px) {
  .vip-quick-benefits {
    grid-template-columns: repeat(2, 1fr); }

  .vip-pricing-mini {
    grid-template-columns: 1fr; }

  .price-card--featured {
    transform: scale(1); } }
@media (max-width: 768px) {
  .vip-teaser-title {
    font-size: 2.2rem; }

  .vip-quick-benefits {
    grid-template-columns: 1fr;
    gap: 1rem; }

  .benefit-emoji {
    font-size: 2rem; }

  .btn-large--vip-gold {
    font-size: 1rem;
    padding: 2rem 3rem; } }

/*# sourceMappingURL=main-style.css.map */
