
        @import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto:wght@400;700&display=swap');

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

        body {
            background-color: #0a0a0a;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%230a0a0a"/><rect x="0" y="0" width="50" height="50" fill="%23111111" opacity="0.5"/><rect x="50" y="50" width="50" height="50" fill="%23111111" opacity="0.5"/></svg>');
            background-size: 100px 100px;
            color: #e0e0e0;
            font-family: 'Roboto', sans-serif;
            font-size: 14px;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header */
        header {
            text-align: center;
            padding: 60px 20px;
            position: relative;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
        }

        h1 {
            font-family: 'Press Start 2P', cursive;
            font-size: 3em;
            color: #55ff55;
            text-shadow: 2px 2px 0px #2d8a2d, 4px 4px 0px #1a5c1a;
            letter-spacing: 2px;
            animation: glow 2s ease-in-out infinite alternate;
            margin-bottom: 20px;
        }

        @keyframes glow {
            from {
                text-shadow: 3px 3px 0px #2d8a2d, 6px 6px 0px #1a5c1a, 0 0 10px #55ff55;
            }

            to {
                text-shadow: 3px 3px 0px #2d8a2d, 6px 6px 0px #1a5c1a, 0 0 20px #55ff55, 0 0 30px #55ff55;
            }
        }

        .server-status {
            display: inline-block;
            padding: 15px 30px;
            background: rgba(0, 0, 0, 0.8);
            border: 3px solid #55ff55;
            font-family: 'Press Start 2P', cursive;
            font-size: 0.8em;
            margin-top: 20px;
            position: relative;
            animation: statusGlow 2s ease-in-out infinite alternate;
        }

        @keyframes statusGlow {
            from {
                box-shadow: 0 0 5px #55ff55, 0 0 10px #55ff55;
            }
            to {
                box-shadow: 0 0 10px #55ff55, 0 0 20px #55ff55, 0 0 30px #55ff55;
            }
        }

        

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        /* Secciones */
        section {
            margin: 40px 0;
            padding: 30px;
            background: rgb(42, 42, 42);
            border: 2px solid #333;
            border-radius: 4px;
            position: relative;
        }

        /* Sección Conéctate Ahora */
        .connect-section {
            background: linear-gradient(135deg, rgba(85, 255, 85, 0.08) 0%, rgba(42, 42, 42, 0.95) 100%);
            /*! border: 3px solid #55ff55; */
            /*! box-shadow: 0 0 25px rgba(85, 255, 85, 0.3), inset 0 0 25px rgba(85, 255, 85, 0.08); */
            position: relative;
            overflow: hidden;
        }

        

        .connect-section h2 {
            color: #ffaa00;
            text-shadow: 3px 3px 0px #2d8a2d, 6px 6px 0px #1a5c1a, 0 0 20px #ffaa00;
            animation: connectTitleGlow 2s ease-in-out infinite alternate;
        }

        @keyframes connectTitleGlow {
            from { text-shadow: 3px 3px 0px #2d8a2d, 6px 6px 0px #1a5c1a, 0 0 20px #ffaa00; }
            to { text-shadow: 3px 3px 0px #2d8a2d, 6px 6px 0px #1a5c1a, 0 0 30px #ffaa00, 0 0 40px #ffaa00; }
        }

        .connect-container {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 50px;
            align-items: center;
        }

        .connect-info {
            background: rgba(0, 0, 0, 0.4);
            border-radius: 8px;
            padding: 30px;
            position: relative;
        }

        .connect-info::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #55ff55, transparent, #ffaa00, transparent, #55ff55);
            z-index: -1;
            opacity: 0.4;
            animation: connectInfoGlow 3s ease-in-out infinite alternate;
        }

        @keyframes connectInfoGlow {
            from { opacity: 0.4; }
            to { opacity: 0.7; }
        }

        .connect-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .connect-icon {
            font-size: 2em;
            margin-right: 15px;
            animation: connectIconBounce 2s ease-in-out infinite;
        }

        @keyframes connectIconBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .connect-header h3 {
            font-family: 'Press Start 2P', cursive;
            font-size: 1.2em;
            color: #55ff55;
            text-shadow: 2px 2px 0px #2d8a2d;
            margin: 0;
        }

        .connect-description {
            font-size: 1.1em;
            color: #cccccc;
            margin-bottom: 25px;
        }

        .connect-section .server-ip {
            background: rgba(0, 0, 0, 0.8);
            border: 3px solid #ffaa00;
            color: #ffaa00;
            text-shadow: 2px 2px 0px #2d8a2d;
            box-shadow: 0 0 15px rgba(255, 170, 0, 0.4);
            transition: all 0.3s;
            font-size: 1.1em;
            padding: 15px 25px;
            margin: 25px 0;
        }

        .connect-section .server-ip:hover {
            background: rgba(255, 170, 0, 0.15);
            border-color: #55ff55;
            color: #55ff55;
            box-shadow: 0 0 25px rgba(85, 255, 85, 0.6);
            transform: translateY(-2px);
        }

        .connect-actions {
            display: flex;
            gap: 15px;
            margin: 30px 0;
        }

        .connect-actions .connect-button,
        .connect-actions .copy-button {
            width: 200px;
            height: 60px;
            justify-content: center;
        }

        .connect-section .connect-button {
            background: linear-gradient(180deg, #4caf50 0%, #2d8a2d 100%);
            border: 3px solid #1a5c1a;
            text-shadow: 2px 2px 0px #1a5c1a;
            box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.3), 0 4px 0 #1a5c1a, 0 0 15px rgba(76, 175, 80, 0.4);
            transition: all 0.3s;
            padding: 15px 25px;
            font-size: 0.9em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .connect-section .connect-button:hover {
            background: linear-gradient(180deg, #5cbf60 0%, #3d9a3d 100%);
            box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.4), 0 4px 0 #1a5c1a, 0 0 25px rgba(76, 175, 80, 0.6);
            transform: translateY(-2px);
        }

        .copy-button {
            background: linear-gradient(180deg, #ff9800 0%, #e65100 100%);
            border: 3px solid #bf360c;
            color: white;
            font-family: 'Press Start 2P', cursive;
            font-size: 0.9em;
            text-shadow: 2px 2px 0px #bf360c;
            cursor: pointer;
            transition: all 0.3s;
            padding: 15px 25px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.3), 0 4px 0 #bf360c, 0 0 15px rgba(255, 152, 0, 0.4);
        }

        .copy-button:hover {
            background: linear-gradient(180deg, #ffa726 0%, #f57c00 100%);
            box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.4), 0 4px 0 #bf360c, 0 0 25px rgba(255, 152, 0, 0.6);
            transform: translateY(-2px);
        }

        .button-icon {
            font-size: 1.2em;
        }

        .server-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 30px;
        }

        .stat-item {
            background: rgba(0, 0, 0, 0.6);
            border: 2px solid #444;
            border-radius: 4px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s;
        }

        .stat-item:hover {
            border-color: #55ff55;
            box-shadow: 0 0 10px rgba(85, 255, 85, 0.3);
        }

        .stat-label {
            display: block;
            font-family: 'Press Start 2P', cursive;
            font-size: 0.6em;
            color: #888;
            margin-bottom: 8px;
        }

        .stat-value {
            display: block;
            font-family: 'Press Start 2P', cursive;
            font-size: 0.8em;
            color: #55ff55;
            text-shadow: 1px 1px 0px #2d8a2d;
        }

        .stat-value.online {
            color: #00ff00;
            animation: onlinePulse 2s ease-in-out infinite;
        }

        @keyframes onlinePulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .connect-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .character-frame {
            position: relative;
            border: 4px solid #55ff55;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(85, 255, 85, 0.4);
            transition: all 0.3s;
        }

        .character-frame:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(85, 255, 85, 0.6);
        }

        .character-frame img {
            width: 250px;
            height: auto;
            display: block;
        }

        .frame-decoration {
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border: 2px solid #ffaa00;
            border-radius: 8px;
            animation: frameDecorationGlow 2s ease-in-out infinite alternate;
        }

        @keyframes frameDecorationGlow {
            from { opacity: 0.5; }
            to { opacity: 1; }
        }

        @media (max-width: 768px) {
            .connect-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .connect-actions {
                flex-direction: column;
            }

            .server-stats {
                grid-template-columns: 1fr;
            }

            .character-frame img {
                width: 200px;
            }
        }

        section::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: #2a2a2a;
            z-index: -1;
            /*! border-radius: -170px; */
        }

        h2 {
            font-family: 'Press Start 2P', cursive;
            font-size: 1em;
            color: #55ff55;
            margin-bottom: 20px;
            text-shadow: 2px 2px 0px #2d8a2d;
            display: flex;
            align-items: center;
        }

        h2::before {
            content: "▣";
            margin-right: 15px;
            font-size: 1em;
            color: #ffaa00;
        }

        /* ===== LAYOUT: TEXTO A LA IZQUIERDA, MAPA A LA DERECHA ===== */
        .dual {
            display: grid;
            grid-template-columns: 1fr auto;
            /* Primera columna: texto (ocupa todo el espacio). Segunda columna: mapa (tamaño automático) */
            gap: 40px;
            /* Espacio entre texto y mapa */
            align-items: center;
            /* Centra verticalmente ambos elementos */
        }

        .texto {
            /* Contenedor del texto izquierdo */
            padding: 20px;
        }

        .mapa {
            /* Contenedor del mapa derecho */
            display: flex;
            justify-content: center;
            /* Centra la imagen horizontalmente en su celda */
            align-items: center;
            /* Centra la imagen verticalmente en su celda */
        }

        .mapa img {
            width: 200px;
            /* Ancho fijo de la imagen */
            max-width: 100%;
            /* Evita que se desborde en pantallas pequeñas */
            height: auto;
            border: 2px solid #55ff55;
            /* Borde estilo Minecraft */
            border-radius: 4px;
        }

        /* ========================================================== */

        /* Características */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .feature-box {
            background: #1a1a1a;
            border: 2px solid #444;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            border-color: #55ff55;
            box-shadow: 0 5px 15px rgba(85, 255, 85, 0.3);
        }

        .feature-box h3 {
            font-family: 'Press Start 2P', cursive;
            font-size: 0.8em;
            color: #ffaa00;
            margin-bottom: 10px;
        }

        .feature-icon {
            font-size: 3em;
            margin-bottom: 10px;
            display: block;
        }

        /* Lista de Plugins */
        .plugins-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
            margin-top: 20px;
        }

        .plugin-item {
            background: #1a1a1a;
            border: 1px solid #333;
            padding: 10px;
            font-family: 'Press Start 2P', cursive;
            font-size: 0.6em;
            color: #55ff55;
            transition: all 0.2s;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .plugin-item:hover {
            background: #2a2a2a;
            border-color: #55ff55;
        }

        .players-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 10px;
            margin-top: 20px;
        }

        .player {
            background: #1a1a1a;
            border: 1px solid #333;
            padding: 10px;
            font-family: 'Press Start 2P', cursive;
            font-size: 0.6em;
            color: #55ff55;
            text-align: center;
            transition: all 0.2s;
        }

        .player:hover {
            background: #2a2a2a;
            border-color: #55ff55;
        }

        .server-panel {
            max-width: 800px;
            margin: 20px auto;
            background: #2a2a2a;
            border: 2px solid #444;
            border-radius: 4px;
            padding: 15px;
        }

        .server-entry {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .server-icon {
            margin-right: 20px;
            flex-shrink: 0;
        }

        .server-icon img {
            border: 1px solid #666;
        }

        .server-info h3 {
            color: #ffffff;
            font-family: 'Press Start 2P', cursive;
            font-size: 1em;
            margin: 0 0 8px 0;
        }

        .motd {
            color: #cccccc;
            font-size: 1em;
            margin: 0 0 8px 0;
        }

        .details {
            color: #ffff00;
            font-size: 1em;
            margin: 0;
        }

        .ping {
            color: #00ff00;
        }

        /* Botón de Conectar */
        .connect-button {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(180deg, #4caf50 0%, #2d8a2d 100%);
            border: 3px solid #1a5c1a;
            font-family: 'Press Start 2P', cursive;
            font-size: 0.9em;
            color: white;
            text-shadow: 2px 2px 0px #1a5c1a;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 20px;
            text-decoration: none;
            box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 4px 0 #1a5c1a;
        }

        .connect-button:hover {
            transform: translateY(2px);
            box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 2px 0 #1a5c1a;
        }

        .connect-button:active {
            transform: translateY(4px);
            box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.2);
        }

        /* IP del Servidor */
        .server-ip {
            font-family: 'Press Start 2P', cursive;
            font-size: 1em;
            color: #ffaa00;
            background: rgba(0, 0, 0, 0.8);
            padding: 12px 20px;
            border: 2px dashed #ffaa00;
            display: inline-block;
            margin: 20px 0;
            cursor: pointer;
            transition: all 0.3s;
        }

        .server-ip:hover {
            background: rgba(255, 170, 0, 0.1);
            border-style: solid;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 40px 20px;
            margin-top: 60px;
            border-top: 2px solid #333;
            font-size: 0.8em;
            color: #666;
        }

        footer p {
            font-family: 'Press Start 2P', cursive;
            font-size: 0.6em;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8em;
            }

            h2 {
                font-size: 1.2em;
            }

            .server-ip {
                font-size: 0.9em;
                padding: 10px 15px;
            }

            .connect-button {
                font-size: 0.8em;
                padding: 15px 25px;
            }

            /* En móviles apila los elementos verticalmente */
            .dual {
                grid-template-columns: 1fr;
                /* Una sola columna */
                gap: 20px;
            }

            .mapa {
                order: -1;
                /* La imagen va arriba */
                margin-bottom: 20px;
            }
        }

        /* Notificaciones */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #000;
            border: 2px solid #55ff55;
            padding: 15px 20px;
            font-family: 'Press Start 2P', cursive;
            font-size: 0.7em;
            color: white;
            display: none;
            z-index: 1000;
            animation: slideIn 0.3s ease-out;
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }

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

        .banner {
            font: 1.5em sans-serif;
        }

        /* Marquee de Novedades estilo Minecraft */
        .novelty-marquee {
            background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
            border: 3px solid #55ff55;
            border-radius: 8px;
            padding: 15px;
            margin-top: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 0 20px rgba(85, 255, 85, 0.3);
        }

        .marquee-content {
            display: flex;
            align-items: center;
            white-space: nowrap;
            animation: marqueeScroll 20s linear infinite;
            font-family: 'Press Start 2P', cursive;
            font-size: 0.8em;
            color: #ffffff;
            text-shadow: 2px 2px 0px #2d8a2d;
        }

        .novelty-item {
            margin: 0 30px;
            color: #ffffff;
            text-shadow: 2px 2px 0px #2d8a2d;
            font-weight: bold;
        }

        @keyframes marqueeScroll {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* Efecto de brillo adicional para el marquee */
        .novelty-marquee::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #55ff55, transparent, #ffaa00, transparent, #55ff55);
            border-radius: 8px;
            opacity: 0.3;
            animation: marqueeGlow 3s ease-in-out infinite alternate;
            z-index: -1;
        }

        @keyframes marqueeGlow {
            from { opacity: 0.3; }
            to { opacity: 0.6; }
        }

        .contact-info {
            margin-top: 10px;
        }

        .contact-info a {
            color: #55ff55;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-info a:hover {
            color: #ffaa00;
            text-decoration: none;
        }

        .server-stats-link {
            flex-shrink: 0;
            margin-left: 20px;
        }

        .server-stats-link .stats-button {
            width: auto;
            padding: 12px 20px;
            font-size: 0.7em;
            margin: 0;
        }

        .visit-counter {
            text-align: center;
            padding: 20px 20px;
            margin: 20px 0;
        }

        .counter-label {
            font-family: 'Press Start 2P', cursive;
            font-size: 0.8em;
            color: #ffaa00;
            margin-bottom: 10px;
            text-shadow: 2px 2px 0px #2d8a2d;
        }

        .counter-number {
            font-family: 'Press Start 2P', cursive;
            font-size: 2em;
            color: #55ff55;
            text-shadow: 3px 3px 0px #2d8a2d, 6px 6px 0px #1a5c1a;
            letter-spacing: 3px;
            animation: numberGlow 2s ease-in-out infinite alternate;
        }

        @keyframes numberGlow {
            from {
                text-shadow: 3px 3px 0px #2d8a2d, 6px 6px 0px #1a5c1a, 0 0 10px #55ff55;
            }
            to {
                text-shadow: 3px 3px 0px #2d8a2d, 6px 6px 0px #1a5c1a, 0 0 20px #55ff55, 0 0 30px #55ff55;
            }
        }

        .stats-button {
            display: block;
            margin: 0 auto;
            width: 300px;
            padding: 15px 30px;
            background: linear-gradient(180deg, #ff9800 0%, #e65100 100%);
            border: 3px solid #bf360c;
            font-family: 'Press Start 2P', cursive;
            font-size: 0.8em;
            color: white;
            text-shadow: 2px 2px 0px #bf360c;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.3), 0 4px 0 #bf360c, 0 0 15px rgba(255, 152, 0, 0.4);
            text-align: center;
        }

        .stats-button:hover {
            background: linear-gradient(180deg, #ffa726 0%, #f57c00 100%);
            box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.4), 0 4px 0 #bf360c, 0 0 25px rgba(255, 152, 0, 0.6);
            transform: translateY(-2px);
            text-decoration: none;
            color: white;
        }

        .gallery-nav-button {
            display: block;
            margin-top: 10px;
            width: 100%;
            padding: 12px 20px;
            background: linear-gradient(180deg, #9c27b0 0%, #6a1b9a 100%);
            border: 3px solid #4a148c;
            font-family: 'Press Start 2P', cursive;
            font-size: 0.7em;
            color: white;
            text-shadow: 2px 2px 0px #4a148c;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.3), 0 4px 0 #4a148c, 0 0 15px rgba(156, 39, 176, 0.4);
            text-align: center;
        }

        .gallery-nav-button:hover {
            background: linear-gradient(180deg, #ab47bc 0%, #7b1fa2 100%);
            box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.4), 0 4px 0 #4a148c, 0 0 25px rgba(156, 39, 176, 0.6);
            transform: translateY(-2px);
            text-decoration: none;
            color: white;
        }

        .gallery-nav-button:active {
            transform: translateY(2px);
            box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.2);
        }

        .stats-button:active {
            transform: translateY(2px);
            box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.2);
        }

        /* Galería de Imágenes */
        .gallery-section {
            margin: 40px 0;
            padding: 30px;
            background: linear-gradient(135deg, rgba(85, 255, 85, 0.05) 0%, rgba(42, 42, 42, 0.95) 100%);
            border: 2px solid #444;
            border-radius: 4px;
            position: relative;
        }

        .gallery-section h2 {
            color: #ffaa00;
            text-shadow: 2px 2px 0px #2d8a2d, 4px 4px 0px #1a5c1a;
            margin-bottom: 30px;
        }

        .gallery-container {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            background: rgba(0, 0, 0, 0.3);
            padding: 20px;
        }

        .gallery-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .gallery-prev, .gallery-next {
            background: rgba(85, 255, 85, 0.2);
            border: 2px solid #55ff55;
            color: #55ff55;
            font-size: 2em;
            padding: 10px 15px;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.3s;
            z-index: 10;
            flex-shrink: 0;
        }

        .gallery-prev:hover, .gallery-next:hover {
            background: rgba(85, 255, 85, 0.4);
            box-shadow: 0 0 15px rgba(85, 255, 85, 0.6);
            transform: scale(1.1);
        }

        .gallery-track {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: #55ff55 #333;
            padding: 10px 0;
        }

        .gallery-track::-webkit-scrollbar {
            height: 8px;
        }

        .gallery-track::-webkit-scrollbar-track {
            background: #333;
            border-radius: 4px;
        }

        .gallery-track::-webkit-scrollbar-thumb {
            background: #55ff55;
            border-radius: 4px;
        }

        .gallery-item {
            flex-shrink: 0;
            width: 200px;
            height: 150px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid #444;
            position: relative;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            border-color: #55ff55;
            box-shadow: 0 5px 20px rgba(85, 255, 85, 0.4);
            z-index: 5;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Modal para ampliar imágenes */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            animation: fadeIn 0.3s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #ffaa00;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
            transition: all 0.3s;
        }

        .close-modal:hover {
            color: #55ff55;
            transform: scale(1.2);
        }

        .modal-content {
            margin: auto;
            display: block;
            max-width: 90%;
            max-height: 80vh;
            margin-top: 50px;
            border-radius: 8px;
            border: 3px solid #55ff55;
            animation: zoomIn 0.3s;
        }

        @keyframes zoomIn {
            from { transform: scale(0.8); }
            to { transform: scale(1); }
        }

        .modal-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
        }

        .modal-controls button {
            background: rgba(85, 255, 85, 0.2);
            border: 2px solid #55ff55;
            color: #55ff55;
            padding: 12px 20px;
            font-family: 'Press Start 2P', cursive;
            font-size: 0.7em;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s;
        }

        .modal-controls button:hover {
            background: rgba(85, 255, 85, 0.4);
            box-shadow: 0 0 15px rgba(85, 255, 85, 0.6);
        }

        /* Responsive para galería */
        @media (max-width: 768px) {
            .gallery-item {
                width: 150px;
                height: 120px;
            }

            .gallery-wrapper {
                gap: 10px;
            }

            .modal-controls {
                flex-direction: column;
                gap: 10px;
                bottom: 20px;
            }

            .modal-controls button {
                font-size: 0.6em;
                padding: 10px 15px;
            }
        }
    