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

   :root {
     --primary-purple: #7C3AED;
     --dark-purple: #5B21B6;
     --light-purple: #A78BFA;
     --bg-dark: #0F0F1E;
     --bg-card: #1A1A2E;
     --text-primary: #FFFFFF;
     --text-secondary: #B4B4C8;
     --accent: #EC4899;
     --neon-glow: rgba(124, 58, 237, 0.5);
   }

  html {
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }

  body {
    font-family: 'VT323', 'Courier New', monospace;
     background: var(--bg-dark);
     color: var(--text-primary);
     line-height: 1.6;
     overflow-x: hidden;
   }

  h1,
  h2,
  h3,
  .studio-name {
    font-family: 'Press Start 2P', 'VT323', monospace;
  }

   /* Animated Background */
   .bg-animation {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     opacity: 0.1;
     pointer-events: none;
   }

   .pixel-grid {
     position: absolute;
     width: 100%;
     height: 100%;
     background-image:
       linear-gradient(var(--primary-purple) 1px, transparent 1px),
       linear-gradient(90deg, var(--primary-purple) 1px, transparent 1px);
     background-size: 50px 50px;
     animation: gridMove 20s linear infinite;
   }

   @keyframes gridMove {
     0% {
       transform: translate(0, 0);
     }

     100% {
       transform: translate(50px, 50px);
     }
   }

   /* Header/Navigation */
   header {
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 1000;
     background: rgba(15, 15, 30, 0.9);
     backdrop-filter: blur(10px);
     border-bottom: 2px solid transparent;
     border-image: linear-gradient(90deg, transparent, var(--primary-purple), transparent) 1;
     padding: 1rem 0;
   }

   nav {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 2rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
   }

   .logo-container {
     display: flex;
     align-items: center;
     gap: 1rem;
     cursor: pointer;
     position: relative;
   }

   .logo {
     width: 50px;
     height: 50px;
     padding: 5px;
     clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
     transition: all 0.3s ease;
   }

   .logo:hover {
     transform: scale(1.1) rotate(45deg);
     box-shadow: 0 0 30px var(--neon-glow);
   }

  .studio-name {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--neon-glow);
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    align-items: center;
    text-align: center;
  }

  .studio-tagline {
    font-size: 0.75rem;
    font-family: 'VT323', 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #FFFFFF;
    opacity: 0.85;
    margin-top: 0.2rem;
  }

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

   .nav-links a {
     color: var(--text-secondary);
     text-decoration: none;
     font-weight: 600;
     font-size: 1.1rem;
     transition: all 0.3s ease;
     position: relative;
     letter-spacing: 1px;
   }

   .nav-links a:hover {
     color: var(--primary-purple);
     text-shadow: 0 0 10px var(--neon-glow);
   }

   .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--primary-purple);
     box-shadow: 0 0 10px var(--primary-purple);
     transition: width 0.3s ease;
   }

   .nav-links a:hover::after {
     width: 100%;
   }

   /* Hero Section */
   .hero {
     position: relative;
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     padding: 8rem 2rem 4rem;
     overflow: hidden;
   }

   .hero-content {
     position: relative;
     z-index: 10;
     max-width: 900px;
   }

   .hero-logo {
     width: 200px;
     height: 200px;
     margin: 0 auto 2rem;
     filter: drop-shadow(0 0 30px var(--neon-glow));
     position: relative;
   }

   .hero-logo-container {
     position: relative;
     width: 200px;
     height: 200px;
     margin: 0 auto 2rem;
   }

   /* Contenedor de partículas */
   .particles-container {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     pointer-events: none;
     overflow: visible;
   }

   .particle {
     position: absolute;
     background: var(--primary-purple);
     opacity: 0;
     box-shadow: 0 0 10px var(--primary-purple);
   }

   /* Partículas animadas */
   @keyframes particleRise1 {
     0% {
       transform: translateY(0) translateX(0) scale(1) rotate(0deg);
       opacity: 0.8;
     }

     100% {
       transform: translateY(-150px) translateX(20px) scale(0) rotate(180deg);
       opacity: 0;
     }
   }

   @keyframes particleRise2 {
     0% {
       transform: translateY(0) translateX(0) scale(1) rotate(0deg);
       opacity: 0.8;
     }

     100% {
       transform: translateY(-180px) translateX(-30px) scale(0) rotate(-180deg);
       opacity: 0;
     }
   }

   @keyframes particleRise3 {
     0% {
       transform: translateY(0) translateX(0) scale(1) rotate(0deg);
       opacity: 0.8;
     }

     100% {
       transform: translateY(-200px) translateX(15px) scale(0) rotate(90deg);
       opacity: 0;
     }
   }

   @keyframes particleRise4 {
     0% {
       transform: translateY(0) translateX(0) scale(1) rotate(0deg);
       opacity: 0.8;
     }

     100% {
       transform: translateY(-160px) translateX(-20px) scale(0) rotate(-90deg);
       opacity: 0;
     }
   }

   @keyframes particleRise5 {
     0% {
       transform: translateY(0) translateX(0) scale(1) rotate(0deg);
       opacity: 0.8;
     }

     100% {
       transform: translateY(-220px) translateX(10px) scale(0) rotate(270deg);
       opacity: 0;
     }
   }

   @keyframes particleRise6 {
     0% {
       transform: translateY(0) translateX(0) scale(1) rotate(0deg);
       opacity: 0.8;
     }

     100% {
       transform: translateY(-190px) translateX(-15px) scale(0) rotate(-270deg);
       opacity: 0;
     }
   }

   .hero h1 {
     font-size: 3.5rem;
     font-weight: 900;
     margin-bottom: 1rem;
     background: linear-gradient(135deg, var(--light-purple), var(--accent));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     animation: fadeInUp 1s ease;
     letter-spacing: 5px;
     text-shadow: 0 0 50px var(--neon-glow);
   }

   .hero p {
     font-size: 1.6rem;
     color: var(--text-secondary);
     margin-bottom: 2rem;
     animation: fadeInUp 1s ease 0.2s backwards;
     letter-spacing: 2px;
     font-weight: 500;
   }

   .cta-button {
     display: inline-block;
     padding: 1.2rem 3rem;
     background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
     color: white;
     text-decoration: none;
     clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
     font-weight: 700;
     font-size: 1.1rem;
     letter-spacing: 2px;
     transition: all 0.3s ease;
     box-shadow: 0 10px 30px var(--neon-glow);
     animation: fadeInUp 1s ease 0.4s backwards;
     position: relative;
     overflow: hidden;
   }

   .cta-button::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
     transition: left 0.5s ease;
   }

   .cta-button:hover::before {
     left: 100%;
   }

   .cta-button:hover {
     transform: translateY(-3px) scale(1.05);
     box-shadow: 0 15px 40px var(--neon-glow);
   }

   @keyframes fadeInUp {
     from {
       opacity: 0;
       transform: translateY(30px);
     }

     to {
       opacity: 1;
       transform: translateY(0);
     }
   }

   /* Section Styles */
   section {
     position: relative;
     z-index: 10;
     max-width: 1400px;
     margin: 0 auto;
     padding: 6rem 2rem;
   }

   .section-title {
     font-size: 2.5rem;
     font-weight: 900;
     text-align: center;
     margin-bottom: 1rem;
     background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     letter-spacing: 3px;
     position: relative;
   }

   .section-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 3px;
     background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
     box-shadow: 0 0 10px var(--primary-purple);
   }

   .section-subtitle {
     text-align: center;
     color: var(--text-secondary);
     font-size: 1.3rem;
     margin-bottom: 4rem;
     letter-spacing: 1px;
   }

  /* Achievement Section */
  .achievement-section {
    max-width: 1100px;
    margin: 4rem auto 6rem;
    padding: 0 2rem;
  }

  .achievement-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(236, 72, 153, 0.1));
    border: 2px solid var(--primary-purple);
    box-shadow: 0 20px 45px rgba(124, 58, 237, 0.3);
    padding: 2.5rem 3rem;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
    position: relative;
    overflow: hidden;
  }

  .achievement-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.35), transparent 70%);
    transform: rotate(15deg);
    pointer-events: none;
  }

  .achievement-media {
    position: relative;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .achievement-app-icon {
    width: 140px;
    height: 140px;
    border-radius: 32px;
    border: 3px solid rgba(255, 215, 0, 0.8);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.4);
    background: var(--bg-dark);
    object-fit: cover;
  }

  .achievement-crown {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%) rotate(-12deg);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 165, 0, 0.8));
    padding: 0.4rem 0.6rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.45);
  }

  .achievement-crown i {
    font-size: 2rem;
    color: #FFD700;
  }

  .achievement-content {
    flex: 1;
    text-align: left;
  }

  .achievement-title {
    font-size: 1.2rem;
    color: var(--text-primary);
    letter-spacing: 3px;
    margin-bottom: 0.6rem;
  }

  .achievement-subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--light-purple);
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .achievement-description {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
  }

  .achievement-reviews {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .achievement-review {
    background: rgba(26, 26, 46, 0.85);
    border: 1px solid rgba(124, 58, 237, 0.35);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.25);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: center;
    text-align: center;
  }

  .achievement-review::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(124, 58, 237, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
  }

  .achievement-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.3);
  }

  .achievement-review-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .achievement-stars {
    color: #FFD700;
    font-size: 0.95rem;
    margin-top: 0.3rem;
    letter-spacing: 0.1rem;
  }

  .achievement-review-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
  }

  .achievement-review-author {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

   /* About Section */
   .about-content {
     max-width: 900px;
     margin: 0 auto;
     text-align: center;
     font-size: 1.3rem;
     line-height: 1.9;
     color: var(--text-secondary);
     background: var(--bg-card);
     padding: 2.5rem;
     clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
     border: 2px solid var(--primary-purple);
     box-shadow: 0 10px 40px rgba(124, 58, 237, 0.2);
     position: relative;
   }

   .about-content::before {
     content: '';
     position: absolute;
     top: -2px;
     left: -2px;
     right: -2px;
     bottom: -2px;
     background: linear-gradient(135deg, var(--primary-purple), var(--accent));
     clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
     z-index: -1;
     opacity: 0;
     transition: opacity 0.3s ease;
   }

   .about-content:hover::before {
     opacity: 0.1;
   }

  .about-content .about-quote {
    margin: 2.5rem auto 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-purple);
    background: rgba(124, 58, 237, 0.1);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    display: inline-block;
    text-align: left;
    font-size: 0.8rem;
    font-family: monospace;
  }

  .highlight {
    color: var(--primary-purple);
    font-weight: 700;
    text-shadow: 0 0 10px var(--neon-glow);
  }

  .highlight-gold {
    color: #FFD700;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
  }

   /* Games Grid */
   .games-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
   }

  .game-card {
    background: var(--bg-card);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    overflow: hidden;
    border: 2px solid rgba(124, 58, 237, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    z-index: 0;
  }

  .game-card > * {
    position: relative;
    z-index: 1;
  }

  .game-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent));
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
  }

   .game-card:hover {
     transform: translateY(-15px);
     border-color: var(--primary-purple);
     box-shadow: 0 25px 50px rgba(124, 58, 237, 0.4);
   }

   .game-card:hover::before {
     opacity: 0.1;
   }

   .game-preview {
     position: relative;
     width: 100%;
     height: 250px;
     overflow: hidden;
     background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
   }

   .game-preview img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: top center;
     transition: transform 0.5s ease;
   }

   .game-card:hover .game-preview img {
     transform: scale(1.15);
   }

   .platform-badges {
     position: absolute;
     bottom: 15px;
     right: 15px;
     display: flex;
     gap: 0.7rem;
     flex-wrap: wrap;
     justify-content: flex-end;
   }

  .platform-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    background: rgba(10, 10, 20, 0.573);
  }

   .game-info {
     padding: 1.3rem 1.5rem;
   }

   .game-header {
     display: flex;
     align-items: center;
     gap: 0.8rem;
     margin-bottom: 0.8rem;
   }

   .game-icon {
     width: 50px;
     height: 50px;
     border-radius: 12px;
     border: 2px solid var(--primary-purple);
     background: var(--bg-dark);
     object-fit: cover;
     box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
     transition: all 0.3s ease;
     flex-shrink: 0;
   }

   .game-card:hover .game-icon {
     transform: rotate(5deg) scale(1.1);
     box-shadow: 0 8px 20px rgba(124, 58, 237, 0.5);
   }

   .game-title {
     font-size: 1.3rem;
     font-weight: 700;
     color: var(--text-primary);
     letter-spacing: 1px;
     line-height: 1.2;
   }

  .game-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .game-links {
     display: flex;
     gap: 0.6rem;
     flex-wrap: wrap;
   }

   .store-link {
     padding: 0.3rem 0.8rem;
     background: transparent;
     color: var(--primary-purple);
     text-decoration: none;
     font-size: 0.95rem;
     font-weight: 700;
     transition: all 0.3s ease;
     letter-spacing: 0.5px;
     display: inline-flex;
     align-items: center;
     gap: 0.4rem;
     border: none;
   }

   .store-link:hover {
     color: var(--light-purple);
     transform: translateY(-2px);
     text-shadow: 0 0 10px var(--neon-glow);
   }

   .store-link i {
     font-size: 1rem;
   }

   /* Footer */
   footer {
     position: relative;
     z-index: 10;
     background: var(--bg-card);
     border-top: 2px solid transparent;
     border-image: linear-gradient(90deg, transparent, var(--primary-purple), transparent) 1;
     padding: 3rem 2rem 1rem;
     text-align: center;
   }

   .footer-content {
     max-width: 1400px;
     margin: 0 auto;
   }

  .footer-links {
    margin-bottom: 2rem;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .footer-social-link {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
  }

  .footer-social-link:hover {
    color: var(--primary-purple);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.45);
  }

  .footer-social-link i {
    font-size: 1.4rem;
  }

  .footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 1.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 1px;
  }

  .footer-links a:hover {
    color: var(--primary-purple);
    text-shadow: 0 0 10px var(--neon-glow);
  }

   .copyright {
     color: var(--text-secondary);
     font-size: 1rem;
     letter-spacing: 1px;
   }

   /* Mobile Menu */
   .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     color: var(--text-primary);
     font-size: 1.8rem;
     cursor: pointer;
     transition: all 0.3s ease;
   }

   .mobile-menu-btn:hover {
     color: var(--primary-purple);
     text-shadow: 0 0 10px var(--neon-glow);
   }

   /* Responsive */
   @media (max-width: 768px) {
     .nav-links {
       display: none;
     }

     .mobile-menu-btn {
       display: block;
     }

     .hero h1 {
       font-size: 2.5rem;
     }

     .hero p {
       font-size: 1.2rem;
     }

     .section-title {
       font-size: 2.5rem;
     }

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

     .footer-social {
       gap: 1rem;
     }

     .about-content {
       padding: 2rem;
       font-size: 1.1rem;
     }

     .achievement-card {
       flex-direction: column;
       text-align: center;
       padding: 2rem;
       clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
       gap: 1.5rem;
     }

     .achievement-content {
       text-align: center;
     }

     .achievement-description {
       max-width: none;
     }

     .achievement-media {
       width: 120px;
       height: 120px;
     }

     .achievement-app-icon {
       width: 120px;
       height: 120px;
     }

     .achievement-crown {
       top: -24px;
     }

     .achievement-reviews {
       grid-template-columns: 1fr;
     }

     .achievement-review {
       flex-direction: column;
       align-items: center;
       text-align: center;
     }

     .achievement-review-body {
       align-items: center;
     }
  }

   /* Scroll Reveal Animation */
   .reveal {
     opacity: 0;
     transform: translateY(50px);
     transition: all 0.8s ease;
   }

   .reveal.active {
     opacity: 1;
     transform: translateY(0);
   }

   /* Loading Indicator */
   .loading {
     text-align: center;
     padding: 3rem;
     color: var(--text-secondary);
     font-size: 1.2rem;
   }

   .loading i {
     animation: spin 1s linear infinite;
     color: var(--primary-purple);
     font-size: 2rem;
   }

   @keyframes spin {
     0% {
       transform: rotate(0deg);
     }

     100% {
       transform: rotate(360deg);
     }
   }
