/* RESET BÁSICO Y VARIABLES DE COLOR */
:root {
    --color-vino: #4a001f;
    --color-vino-oscuro: #26000f;
    --color-negro: #0a0a0a;
    --color-magenta: #ff0055;
    --color-magenta-oscuro: #8b0032;
    --color-neon-cyan: #00ffff;
    --color-texto: #f0f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FONDO DE CUADROS VINO, NEGRO Y MAGENTA OSCURO */
body {
    background-color: var(--color-negro);
    background-image: 
        linear-gradient(45deg, var(--color-vino-oscuro) 25%, transparent 25%), 
        linear-gradient(-45deg, var(--color-vino-oscuro) 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, var(--color-magenta-oscuro) 75%), 
        linear-gradient(-45deg, transparent 75%, var(--color-magenta-oscuro) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    color: var(--color-texto);
    font-family: 'Space Grotesk', sans-serif;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

/* ESTRELLAS Y BRILLOS FLOTANTES */
.star {
    position: absolute;
    color: var(--color-magenta);
    font-size: 2rem;
    text-shadow: 0 0 10px var(--color-magenta), 0 0 20px #fff;
    pointer-events: none;
    animation: blink 2s infinite alternate;
}

.star-1 { top: 5%; left: 8%; font-size: 3rem; }
.star-2 { top: 20%; right: 5%; color: #fff; }
.star-3 { top: 60%; left: 3%; color: var(--color-neon-cyan); }
.star-4 { top: 85%; right: 8%; font-size: 2.5rem; }

@keyframes blink {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

/* ENCABEZADO */
.header-main {
    text-align: center;
    margin: 40px 0 20px 0;
}

.glitch-title {
    font-family: 'Rock Salt', cursive;
    font-size: 3.8rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 
        3px 3px 0px var(--color-magenta), 
        -3px -3px 0px var(--color-vino);
    letter-spacing: 3px;
}

.subtitle {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.4rem;
    color: var(--color-magenta);
    margin-top: 10px;
    text-shadow: 0 0 8px rgba(255, 0, 85, 0.6);
}

/* CARTELES NEÓN ESTILO BAR */
.neon-banners {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin: 40px 0;
}

.neon-sign {
    background: #050505;
    padding: 15px 25px;
    border-radius: 8px;
    font-family: 'Permanent Marker', cursive;
    font-size: 1.3rem;
    text-align: center;
    max-width: 90%;
    text-transform: uppercase;
}

/* Rotaciones estratégicas para toque crudo/desprolijo */
.rotate-left { transform: rotate(-3deg); }
.rotate-right { transform: rotate(2.5deg); }
.rotate-center { transform: rotate(-1deg); }

/* Efectos de luz neón */
.magenta-neon {
    color: #fff;
    border: 3px solid var(--color-magenta);
    box-shadow: 0 0 15px var(--color-magenta), inset 0 0 15px var(--color-magenta);
    text-shadow: 0 0 8px var(--color-magenta);
}

.wine-neon {
    color: #ffb3d1;
    border: 3px solid #ff0055;
    background: var(--color-vino-oscuro);
    box-shadow: 0 0 20px #ff0055, inset 0 0 10px #ff0055;
    text-shadow: 0 0 8px #ff0055;
}

.cyan-neon {
    color: #fff;
    border: 3px solid var(--color-neon-cyan);
    box-shadow: 0 0 15px var(--color-neon-cyan), inset 0 0 15px var(--color-neon-cyan);
    text-shadow: 0 0 8px var(--color-neon-cyan);
}

/* CONTENEDOR PRINCIPAL Y TARJETAS DE TEXTO */
.content-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.raw-card {
    background: rgba(10, 10, 10, 0.92);
    padding: 30px;
    box-shadow: 10px 10px 0px #000;
    position: relative;
}

.border-magenta {
    border: 2px solid var(--color-magenta);
}

.border-wine {
    border: 2px solid var(--color-vino);
    border-left: 6px solid var(--color-magenta);
}

.raw-card h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 2rem;
    color: var(--color-magenta);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px #000;
}

.raw-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #dddddd;
}

.highlight-text {
    font-weight: bold;
    color: #fff;
    border-left: 3px solid var(--color-magenta);
    padding-left: 10px;
    margin-top: 20px;
}

/* FOOTER */
footer {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
    font-family: 'Permanent Marker', cursive;
    color: #888;
    font-size: 1rem;
}

/* RESPONSIVE PARA CELULARES */
@media (max-width: 600px) {
    .glitch-title { font-size: 2.4rem; }
    .subtitle { font-size: 1.1rem; }
    .neon-sign { font-size: 1rem; padding: 12px 15px; }
    .raw-card { padding: 20px; }
}/* ESTILOS PARA LAS FOTOS UNDERJULIA */

/* Estilo 1: Foto tipo Polaroid cruda */
.photo-raw {
    max-width: 100%;
    height: auto;
    border: 4px solid #fff;
    box-shadow: 8px 8px 0px var(--color-magenta);
    transform: rotate(-1.5deg);
    margin: 20px 0;
    display: block;
}

/* Estilo 2: Foto con marco neón vino */
.photo-neon {
    max-width: 100%;
    height: auto;
    border: 2px solid var(--color-magenta);
    box-shadow: 0 0 15px var(--color-magenta);
    transform: rotate(2deg);
    margin: 20px 0;
    display: block;
}
/* ==========================================
   RECUADRO CON BALAS Y GIF PERSONALIZADO
   ========================================== */

.border-bullets {
    border: 3px solid var(--color-magenta);
    background: rgba(15, 0, 10, 0.95);
    box-shadow: 8px 8px 0px #000, 0 0 20px rgba(255, 0, 85, 0.4);
}

.title-bullets {
    font-family: 'Permanent Marker', cursive;
    color: var(--color-neon-cyan) !important;
    text-shadow: 0 0 10px var(--color-neon-cyan), 2px 2px 0px #000 !important;
    text-align: center;
    margin-bottom: 25px !important;
}

.bullet-gif {
    margin: 0 auto 25px auto;
    max-width: 350px;
}

/* LISTA DE BALAS ESTILO UNDER */
.under-bullet-list {
    list-style: none; /* Quitamos los puntos aburridos por defecto */
    padding-left: 10px;
    margin-top: 15px;
}

.under-bullet-list li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
}

/* Viñeta o Bala personalizada tipo estrella de neón (✦) */
.under-bullet-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-magenta);
    font-size: 1.4rem;
    text-shadow: 0 0 8px var(--color-magenta);
    font-family: 'Permanent Marker', cursive;
}

/* Efecto al pasar el cursor por cada ítem */
.under-bullet-list li:hover {
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}