﻿/ /* --- GENERAL --- */
body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: 'Courier New', monospace;
    overflow-x: hidden;
}

/* --- TÍTULO --- */
.foro-container h1 {
    font-family: 'Creepster', cursive;
    font-size: 3.5rem;
    color: #ff00ff;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 40px #ff66ff, 0 0 80px #ff66ff;
    animation: parpadeo-neon 1.8s infinite alternate, glitch 1s infinite linear alternate-reverse;
}

/* --- ANIMACIONES TÍTULO --- */
@keyframes parpadeo-neon {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
    }

    20%, 24%, 55% {
        opacity: 0.4;
    }
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, -2px);
    }

    60% {
        transform: translate(-1px, 1px);
    }

    80% {
        transform: translate(1px, -1px);
    }

    100% {
        transform: translate(0);
    }
}

/* --- CONTAINER --- */
.foro-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 25px;
    border-radius: 12px;
    background-color: #0f0f1a;
    box-shadow: 0 0 25px #4cfffe;
    position: relative;
    z-index: 1;
}

/* --- FORMULARIO --- */
.formulario input,
.formulario select,
.formulario textarea,
.formulario button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    background-color: #1a1a2e;
    color: #fff;
}

textarea {
    resize: none;
}

/* --- MENSAJES --- */
#mensajes {
    margin-top: 25px;
}

.mensaje {
    border: 2px solid;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #22222e;
    box-shadow: 0 0 10px inset #00000088;
    transition: transform 0.2s;
    position: relative;
}

    .mensaje.masculino {
        border-color: #00ffff;
    }

    .mensaje.femenino {
        border-color: #ff66ff;
    }

    .mensaje:hover {
        transform: translateY(-2px);
    }

/* --- BOTONES --- */
.botones {
    margin-top: 8px;
}

.like-btn {
    background-color: #ff00ff;
    border: none;
    padding: 6px 12px;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 0 8px #ff00ff;
    margin-right: 5px;
    transition: all 0.2s ease-in-out;
}

    .like-btn.liked {
        transform: scale(1.3);
        color: #ff66ff;
    }

    .like-btn:hover {
        background-color: #ff66ff;
        box-shadow: 0 0 12px #ff66ff;
    }

.report-btn {
    background-color: #ff4444;
    border: none;
    padding: 4px 8px;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    box-shadow: 0 0 5px #ff4444;
    transition: all 0.2s ease-in-out;
}

    .report-btn:hover {
        background-color: #ff8888;
        box-shadow: 0 0 8px #ff8888;
    }

/* --- FECHA --- */
.fecha {
    font-size: 0.8rem;
    color: #ccc;
    margin-top: 6px;
}

/* --- LLUVIA DE CENIZA --- */
#ceniza {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* --- BOTÓN ENVIAR --- */
#enviar {
    background-color: #ff3399;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    animation: latido-suave 2s infinite;
    box-shadow: 0 0 10px #ff3399;
}

    #enviar:hover {
        background-color: #ff66cc;
        box-shadow: 0 0 12px #ff66cc;
    }

@keyframes latido-suave {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px #ff3399;
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 12px #ff66cc;
    }
}
/* GENERAL */
body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: 'Courier New', monospace;
    overflow-x: hidden;
}

/* TÍTULO CACHERO */
.titulo-neon {
    font-family: 'Creepster', cursive;
    font-size: 3.5rem;
    color: #ff00ff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 40px #ff66ff, 0 0 80px #ff66ff;
    animation: parpadeo-neon 1.8s infinite alternate, glitch 1s infinite linear alternate-reverse;
}

/* PARPADEO */
@keyframes parpadeo-neon {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
    }

    20%, 24%, 55% {
        opacity: 0.4;
    }
}

/* GLITCH */
@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, -2px);
    }

    60% {
        transform: translate(-1px, 1px);
    }

    80% {
        transform: translate(1px, -1px);
    }

    100% {
        transform: translate(0);
    }
}

/* CONTAINER */
.foro-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 25px;
    border-radius: 12px;
    background-color: #0f0f1a;
    box-shadow: 0 0 25px #4cfffe;
    position: relative;
    z-index: 1;
}
