  :root {
            --bg-primary: #121212;
            --bg-secondary: #1e1e1e;
            --text-primary: #e0e0e0;
            --accent-color: #6a0dad;
            --card-bg: #2d2d2d;
        }

        .light-mode {
            --bg-primary: #f5f5f5;
            --bg-secondary: #ffffff;
            --text-primary: #333333;
            --accent-color: #9c27b0;
            --card-bg: #e9e9e9;
        }

        .ty {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        header {
            background-color: var(--bg-secondary);
            padding: 1rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 100;
        }

       
        .theme-toggle {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: opacity 0.3s;
        }

        .theme-toggle:hover {
            opacity: 0.8;
        }

        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        h1 {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--accent-color);
            font-size: 2.5rem;
            text-shadow: 0 0 10px rgba(106, 13, 173, 0.3);
        }

        .categories {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .category-btn {
            background-color: var(--bg-secondary);
            border: 1px solid var(--accent-color);
            color: var(--text-primary);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .category-btn:hover, .category-btn.active {
            background-color: var(--accent-color);
            color: white;
        }

      .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            padding: 1rem;
        }

        .game-card {
            background-color: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(106, 13, 173, 0.2);
        }

        .game-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(106, 13, 173, 0.3);
            background-color: var(--card-highlight);
        }

        .game-image-container {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .game-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .game-card:hover .game-image {
            transform: scale(1.05);
        }

        .game-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--accent-color);
            color: white;
            padding: 0.3rem 0.6rem;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: bold;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .game-info {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .game-title {
            margin: 0;
            font-size: 1.3rem;
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .game-categories {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .game-category {
            background-color: rgba(106, 13, 173, 0.2);
            color: var(--accent-color);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            border: 1px solid var(--accent-color);
        }

        .game-lore {
            margin: 0.5rem 0;
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--text-primary);
            flex-grow: 1;
        }

        .voice-controls {
            display: flex;
            gap: 0.5rem;
            margin-top: 1.2rem;
        }

        .voice-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0.6rem;
            border-radius: 8px;
            cursor: pointer;
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            font-size: 0.85rem;
        }

        .voice-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        .voice-btn svg {
            margin-right: 6px;
            width: 14px;
            height: 14px;
        }

        /* Efecto de brillo al pasar el mouse */
        .game-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(106, 13, 173, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .game-card:hover::after {
            opacity: 1;
        }

        .read-aloud {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 0.5rem;
            width: 100%;
            font-weight: bold;
            transition: opacity 0.3s;
        }

        .read-aloud:hover {
            opacity: 0.8;
        }

        footer {
            background-color: var(--bg-secondary);
            text-align: center;
            padding: 1.5rem;
            margin-top: 2rem;
        }

        /* Efectos especiales */
        @keyframes pixelate {
            0% { filter: blur(0px); }
            50% { filter: blur(1px); }
            100% { filter: blur(0px); }
        }

        .game-card:hover .game-image {
            animation: pixelate 0.3s;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu {
                flex-direction: column;
                gap: 1rem;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

  
        .controller-icon {
            filter: drop-shadow(0 0 8px rgba(156, 39, 176, 0.7));
            transition: transform 0.3s ease;
        }
        
        .logo:hover .controller-icon {
            transform: rotate(15deg);
        }
   

/* evaluacion*/


        .yon {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            margin: 0;
            padding: 20px;
           }

        .poss {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--bg-secondary);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--accent-purple);
            position: relative;
        }

        /* ... (otros estilos se mantienen igual) ... */

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background-color: var(--success-green);
            color: white;
            padding: 15px 25px;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: none;
            animation: slideIn 0.5s forwards;
        }

        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }

        .result-details {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(106, 13, 173, 0.3);
        }

        .result-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .result-label {
            font-weight: bold;
            color: var(--accent-purple);
        }

        .result-value {
            color: var(--accent-blue);
        }

        .final-average {
            font-size: 1.8rem;
            margin-top: 10px;
            color: var(--success-green);
            text-align: center;
        }





         :root {
            --bg-dark: #121212;
            --bg-secondary: #1e1e1e;
            --text-primary: #e0e0e0;
            --accent-purple: #6a0dad;
            --accent-blue: #0d6aad;
            --card-bg: #2d2d2d;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
           
            color: var(--text-primary);
            margin: 0;
            padding: 20px;
              }

        .container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--bg-secondary);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--accent-purple);
        }


         :root {
            --bg-dark: #121212;
            --bg-secondary: #1e1e1e;
            --text-primary: #e0e0e0;
            --accent-purple: #6a0dad;
            --accent-blue: #0d6aad;
            --card-bg: #2d2d2d;
        }

        .light-theme {
            --bg-dark: #f0f0f0;
            --bg-secondary: #ffffff;
            --text-primary: #333333;
            --accent-purple: #9c27b0;
            --accent-blue: #2196f3;
            --card-bg: #e9e9e9;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-primary);
            margin: 0;
            padding: 20px;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(106, 13, 173, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(13, 106, 173, 0.1) 0%, transparent 50%);
            transition: background-color 0.3s, color 0.3s;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .theme-toggle {
            background-color: var(--accent-purple);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }

        .theme-toggle:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        h1 {
            text-align: center;
            color: var(--accent-purple);
            margin-bottom: 30px;
            font-size: 2.2rem;
            text-shadow: 0 0 10px rgba(106, 13, 173, 0.5);
            position: relative;
        }

        h1::after {
            content: "";
            display: block;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
            margin: 10px auto 0;
            border-radius: 3px;
        }

        .question-card {
            background-color: var(--card-bg);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 25px;
            border-left: 4px solid var(--accent-purple);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }

        .question-card:hover {
            transform: translateY(-3px);
        }

        .question-text {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 15px;
            color: var(--accent-purple);
        }

        .options-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .option-label {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            background-color: rgba(106, 13, 173, 0.2);
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .option-label:hover {
            background-color: rgba(106, 13, 173, 0.3);
            border-color: var(--accent-purple);
        }

        .option-label input[type="radio"] {
            appearance: none;
            width: 18px;
            height: 18px;
            border: 2px solid var(--accent-purple);
            border-radius: 50%;
            margin-right: 10px;
            position: relative;
            transition: all 0.3s;
        }

        .option-label input[type="radio"]:checked {
            background-color: var(--accent-purple);
            box-shadow: 0 0 0 2px var(--bg-secondary) inset;
        }

        .submit-btn {
            display: block;
            width: 100%;
            max-width: 250px;
            margin: 30px auto 0;
            padding: 12px 20px;
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(106, 13, 173, 0.4);
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(106, 13, 173, 0.6);
        }

        .submit-btn::after {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.5s;
        }

        .submit-btn:hover::after {
            left: 100%;
        }

        .result-container {
            display: none;
            background-color: var(--card-bg);
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
            text-align: center;
            border-top: 3px solid var(--accent-purple);
        }

        .result-title {
            color: var(--accent-purple);
            margin-top: 0;
        }

        .average-score {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent-blue);
        }

        @media (max-width: 600px) {
            .options-container {
                flex-direction: column;
            }
            
            .option-label {
                width: 100%;
            }
        }


/*contactos*/
     :root {
            --bg-primary: #121212;
            --bg-secondary: #1e1e1e;
            --text-primary: #e0e0e0;
            --accent-purple: #6a0dad;
            --accent-blue: #0d6aad;
            --accent-green: #6e38d3;
            --card-bg: #2d2d2d;
            --pixel-size: 4px;
        }

        .light-mode {
            --bg-primary: #f5f5f5;
            --bg-secondary: #ffffff;
            --text-primary: #333333;
            --accent-purple: #9c27b0;
            --accent-blue: #2196F3;
            --accent-green: #6e38d3;
            --card-bg: #e9e9e9;
        }

    .great {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            transition: all 0.5s ease;
            background-image: 
                linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)),
                url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-attachment: fixed;
            background-blend-mode: overlay;
        }

        .light-mode body {
            background-image: 
                linear-gradient(rgba(245, 245, 245, 0.9), rgba(245, 245, 245, 0.9)),
                url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        }

     

    

        .theme-toggle {
            background-color: var(--accent-purple);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }

        .theme-toggle:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(106, 13, 173, 0.4);
        }

        .mainu {
            max-width: 1000px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        .contact-info {
            background-color: var(--card-bg);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            border-left: 5px solid var(--accent-purple);
        }

        .contact-form {
            background-color: var(--card-bg);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            border-left: 5px solid var(--accent-blue);
        }

        h1 {
            color: var(--accent-purple);
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }

        h1::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
            margin: 10px auto 0;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .info-icon {
            font-size: 1.5rem;
            color: var(--accent-purple);
            margin-right: 1rem;
            width: 40px;
            height: 40px;
            background-color: rgba(106, 13, 173, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--accent-purple);
            font-weight: 500;
        }

        input, textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--accent-purple);
            border-radius: 4px;
            background-color: var(--bg-secondary);
            color: var(--text-primary);
            transition: all 0.3s;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 2px rgba(13, 106, 173, 0.3);
        }

        textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            font-size: 1rem;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(106, 13, 173, 0.4);
        }

        .noti {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--accent-green);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 4px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: none;
            animation: slideIn 0.3s forwards;
        }

        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes slideOut {
            from { transform: translateX(0); opacity: 1; }
            to { transform: translateX(100%); opacity: 0; }
        }

/*nuevo*/
  .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--bg-secondary);
            border-radius: 50%;
            color: var(--text-primary);
            transition: all 0.3s;
            text-decoration: none;
            font-size: 1.2rem;
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .social-link.twitter {
            color: #1DA1F2;
        }
        .social-link.twitter:hover {
            background-color: #1DA1F2;
            color: white;
        }

        .social-link.facebook {
            color: #4267B2;
        }
        .social-link.facebook:hover {
            background-color: #4267B2;
            color: white;
        }

        .social-link.instagram:hover {
            background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .social-link.instagram:hover {
            color: white;
            background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
       
        }

        .social-link.discord {
            color: #5865F2;
        }
        .social-link.discord:hover {
            background-color: #5865F2;
            color: white;
        }

        .social-link i {
            transition: all 0.3s;
        }

/*fin nuevo*/


      
      
        footer {
            background-color: var(--bg-secondary);
            text-align: center;
            padding: 1.5rem;
            margin-top: 3rem;
        }

        /* Efecto de consola */
        .console-effect {
            font-family: 'Courier New', monospace;
            background-color: rgba(0, 0, 0, 0.7);
            padding: 1rem;
            border-radius: 4px;
            border-left: 4px solid var(--accent-green);
            margin-top: 1rem;
        }

        .light-mode .console-effect {
            background-color: rgba(0, 0, 0, 0.1);
        }

        /* Efecto de pixel art */
        .pixel-box {
            position: relative;
        }

        .pixel-box::before, .pixel-box::after {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            background-color: var(--accent-purple);
        }

        .pixel-box::before {
            top: 0;
            left: 0;
            clip-path: polygon(0 0, 100% 0, 0 100%);
        }

        .pixel-box::after {
            bottom: 0;
            right: 0;
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
        }


 
/*nosotros */
             :root {
            --bg-primary: #121212;
            --bg-secondary: #1e1e1e;
            --text-primary: #e0e0e0;
            --accent-purple: #6a0dad;
            --accent-blue: #0d6aad;
            --card-bg: #2d2d2d;
            --pixel-size: 4px;
        }

        .light-mode {
            --bg-primary: #f5f5f5;
            --bg-secondary: #ffffff;
            --text-primary: #333333;
            --accent-purple: #9c27b0;
            --accent-blue: #2196F3;
            --card-bg: #e9e9e9;
        }

        .tomn {
            font-family: 'Press Start 2P', cursive, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            transition: all 0.5s ease;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(106, 13, 173, 0.1) 0%, transparent 25%),
                radial-gradient(circle at 80% 70%, rgba(13, 106, 173, 0.1) 0%, transparent 25%);
        }

        @font-face {
            font-family: 'Press Start 2P';
            src: url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
        }

        .jam {
            background-color: var(--bg-secondary);
            padding: 1rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .menu {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent-purple);
        }

        .logo img {
            height: 40px;
            margin-right: 10px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        nav a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s;
            position: relative;
        }

        nav a:hover {
            color: var(--accent-purple);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-purple);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        nav a:hover::after {
            transform: scaleX(1);
        }

        .theme-toggle {
            background-color: var(--accent-purple);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            font-family: 'Press Start 2P', cursive;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .theme-toggle:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(106, 13, 173, 0.4);
        }

        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .hero {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            padding: 2rem;
            background-color: var(--bg-secondary);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
            border: 4px solid var(--accent-purple);
        }

        .hero h1 {
            font-size: 2.5rem;
            color: var(--accent-purple);
            margin-bottom: 1rem;
            text-shadow: 3px 3px 0 var(--bg-primary), 6px 6px 0 rgba(106, 13, 173, 0.3);
            position: relative;
            display: inline-block;
        }

        .hero h1::after {
            content: '';
            display: block;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
            margin-top: 10px;
        }

        .hero p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .story-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .story-card {
            background-color: var(--card-bg);
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
            border-left: 5px solid var(--accent-purple);
            position: relative;
            overflow: hidden;
        }

        .story-card:hover {
            transform: translateY(-10px);
        }

        .story-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(106, 13, 173, 0.1), rgba(13, 106, 173, 0.1));
            z-index: -1;
        }

        .story-card h2 {
            color: var(--accent-purple);
            margin-top: 0;
            font-size: 1.5rem;
            border-bottom: 2px solid var(--accent-blue);
            padding-bottom: 0.5rem;
            display: inline-block;
        }

        .story-card p {
            line-height: 1.6;
        }

        .team-section {
            text-align: center;
            margin-bottom: 3rem;
        }

        .team-section h2 {
            font-size: 2rem;
            color: var(--accent-purple);
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        .team-section h2::after {
            content: '';
            display: block;
            width: 50%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
            margin: 10px auto 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .team-member {
            background-color: var(--card-bg);
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            border-top: 4px solid var(--accent-purple);
        }

        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(106, 13, 173, 0.3);
        }

        .team-member img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--accent-blue);
            margin-bottom: 1rem;
        }

        .team-member h3 {
            color: var(--accent-purple);
            margin: 0.5rem 0;
        }

        .team-member p {
            color: var(--text-primary);
            font-style: italic;
            margin: 0.5rem 0;
        }

        .pixel-border {
            position: relative;
            border: 4px solid var(--accent-purple);
        }

        .pixel-border::before,
        .pixel-border::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            background-color: var(--accent-purple);
        }

        .pixel-border::before {
            top: -4px;
            left: -4px;
            clip-path: polygon(0 0, 100% 0, 0 100%);
        }

        .pixel-border::after {
            bottom: -4px;
            right: -4px;
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
        }

        .mission-section {
            background-color: var(--card-bg);
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .mission-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="10" height="10" fill="%236a0dad" opacity="0.1"/></svg>');
            background-size: 20px 20px;
            z-index: 0;
        }

        .mission-section h2 {
            color: var(--accent-purple);
            font-size: 2rem;
            position: relative;
        }

        .mission-section p {
            max-width: 800px;
            margin: 1rem auto;
            position: relative;
            line-height: 1.6;
        }

        .game-stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 2rem 0;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
            margin: 1rem;
            position: relative;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background-color: var(--accent-purple);
            border-radius: 50%;
            opacity: 0.2;
            z-index: 0;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-purple);
            margin: 0.5rem 0;
            position: relative;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-primary);
        }

        footer {
            background-color: var(--bg-secondary);
            text-align: center;
            padding: 1.5rem;
            margin-top: 2rem;
        }

        /* Efecto de glitch */
        .glitch {
            position: relative;
        }

        .glitch::before,
        .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.8;
        }

        .glitch::before {
            color: #0ff;
            z-index: -1;
            animation: glitch-effect 3s infinite;
        }

        .glitch::after {
            color: #f0f;
            z-index: -2;
            animation: glitch-effect 2s infinite reverse;
        }

        @keyframes glitch-effect {
            0% { transform: translate(0); }
            20% { transform: translate(-3px, 3px); }
            40% { transform: translate(-3px, -3px); }
            60% { transform: translate(3px, 3px); }
            80% { transform: translate(3px, -3px); }
            100% { transform: translate(0); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu {
                flex-direction: column;
                gap: 1rem;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero h1 {
                font-size: 1.8rem;
            }
        }
    

        /* otra madre*/
        