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

body {
    background: linear-gradient(to bottom, #000000 60%, #1a3d18 100%);
    background-attachment: fixed;
    background-color: #000;
    color: #4a8a44;
    font-family: 'Courier New', monospace;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding-top: 5vh;
}

.abyssal-wrapper {
    text-align: center;
    width: 90%;
    max-width: 1200px;
}

.slime-title {
    font-size: 4.5rem;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: #3dfc89;
    text-shadow: 0 2px 0 #1a3d18, 0 10px 20px rgba(61, 252, 137, 0.3);
    margin-bottom: 5px;
}

.abyssal-subtitle {
    font-size: 1rem;
    color: #32612e;
    font-style: italic;
    margin-bottom: 40px;
}

/* Tarjeta Abisal */
.abyssal-card {
    background: rgba(10, 10, 10, 0.95);
    border: 2px solid #1a3d18;
    border-radius: 20px;
    padding: 25px;
    width: 320px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 30px rgba(0,0,0,1);
}

.card-tag {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #1a3d18;
    color: #3dfc89;
    font-size: 0.7rem;
    padding: 2px 12px;
    border-radius: 5px;
}

/* Contenedor del Carrusel - Corrección de fondo negro */
.comm-preview-container {
    width: 100%;
    height: 300px;
    background: #000; /* Puedes cambiar esto a transparent si prefieres */
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #1a3d18;
    /* Asegura que el contenedor sea un bloque flexible para centrar */
    display: flex; 
    align-items: center;
    justify-content: center;
}

.preview-img {
    width: 100%;
    height: 100%;
    /* 'cover' es clave: recorta los bordes para llenar TODO el espacio */
    object-fit: cover; 
    /* 'object-position' centra el recorte en la parte importante */
    object-position: center; 
    cursor: pointer;
    display: block;
}

.comm-title {
    color: #3dfc89;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.comm-details {
    list-style: none;
    text-align: left;
}

.comm-details li {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.comm-details li strong { color: #3dfc89; }

/* Lightbox Mejorado */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    border: 2px solid #3dfc89;
    box-shadow: 0 0 30px rgba(61, 252, 137, 0.2);
}

.close-btn {
    position: absolute;
    top: 20px; right: 30px;
    color: #fff; font-size: 40px; cursor: pointer;
}

/* Flechas Navegación */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.5rem;
    color: #3dfc89;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: 0.3s;
}

.nav-btn:hover { color: #fff; text-shadow: 0 0 10px #3dfc89; }
.prev { left: 30px; }
.next { right: 30px; }

.back-link {
    display: block;
    margin-top: 50px;
    color: #32612e;
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
}

.back-link:hover { color: #3dfc89; }


/* --- BOTÓN DE CONTACTO DENTRO DE LA TARJETA --- */

.abyssal-contact-btn {
    display: block;
    margin-top: 25px;
    background-color: #000000;
    color: #32612e; /* Verde lima oscuro */
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 5px;
    border: 1px solid #1a3d18;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.abyssal-contact-btn:hover {
    color: #3dfc89; /* Verde brillante al pasar el mouse */
    border-color: #3dfc89;
    box-shadow: 0 0 15px rgba(61, 252, 137, 0.2);
    background-color: #050505;
    transform: translateY(-2px);
}
