/* ARCHIVO 1 */

/* Barra de desplazamiento  */
::-webkit-scrollbar {
    width: 10px;
    background-color: #050505; 
}

::-webkit-scrollbar-track {
    background: #050505;
    border-left: 1px solid #1a1a1a; 
}


::-webkit-scrollbar-thumb {
    background: #ff0000; 
    border-radius: 0px;  
    border: 2px solid #050505; 
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5); 
}

::-webkit-scrollbar-thumb:hover {
    background: #ffffff; 
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #ff0000 #050505;
}

/* NAV BARRA */

.navbar{
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 40px;

    background: #050505;
    border-top: 1px solid #ff0000;
    border-bottom: 1px solid #ff0000;

    box-shadow: 0 0 15px rgba(255,0,0,.2);
}

.nav-logo{
    color: #ff0000;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 3px;
}

.nav-menu{
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a{
    text-decoration: none;
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: .3s;
    position: relative;
}

.nav-menu a:hover{
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
}

.nav-menu a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;

    width: 0%;
    height: 2px;

    background: #ff0000;
    transition: .3s;
}

.nav-menu a:hover::after{
    width: 100%;
}

/* Responsive */

@media(max-width:768px){

    .navbar{
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .nav-menu{
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* HEADER PRINCIPAL */

.hero-header{
    position: relative;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    background:
    linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.8)),
    url("");

    background-size: cover;
    background-position: center;

    border-bottom: 2px solid #ff0000;
}

.overlay{
    position:absolute;
    inset:0;

    background:
    repeating-linear-gradient(
        transparent,
        transparent 2px,
        rgba(255,255,255,.03) 3px
    );

    pointer-events:none;
}

.header-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:20px;
}

.classified-stamp{
    display:inline-block;

    color:#ff0000;
    border:3px solid #ff0000;

    padding:10px 20px;
    margin-bottom:25px;

    transform:rotate(-8deg);

    font-weight:bold;
    letter-spacing:3px;
}

.hero-header h1{
    font-size:4rem;
    color:white;

    letter-spacing:8px;
    text-transform:uppercase;

    text-shadow:
    0 0 10px #ff0000,
    0 0 20px #ff0000;
}

.subtitle{
    color:#d0d0d0;
    letter-spacing:4px;
    margin:20px 0;
}

.header-info{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;

    margin-top:30px;
    margin-bottom:35px;

    color:#ff0000;
    font-size:.9rem;
}

.header-btn{
    display:inline-block;

    padding:15px 30px;

    border:1px solid #ff0000;

    color:white;
    text-decoration:none;

    letter-spacing:2px;

    transition:.3s;
}

.header-btn:hover{
    background:#ff0000;
    color:black;

    box-shadow:0 0 20px #ff0000;
}

/* BOTON REGRESO */

 .back-btn {
        position: relative;
        display: inline-block;
        padding: 12px 25px;
        background-color: transparent;
        color: #ffffff;
        text-decoration: none;
        font-family: 'Courier New', Courier, monospace;
        font-weight: bold;
        font-size: 14px;
        border: 1px solid #ff0000;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: all 0.3s ease;
        overflow: hidden;
        margin: 40px 0;
    }

    
    
    .back-btn:hover {
        background-color: #ff0000;
        color: #000000;
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
        transform: scale(1.05);
    }

    .back-btn:active {
        transform: scale(0.95);
        background-color: #ff0000; 
        border-color: #ff0000;
    }

    .back-btn::before {
        content: ">";
        position: absolute;
        left: 8px;
        opacity: 0;
        transition: all 0.2s ease;
    }


    .back-btn:hover::before {
        opacity: 1;
        left: 12px;
    }

    .back-btn:hover .btn-text {
        margin-left: 10px;
    }

    .btn-text {
        transition: all 0.2s ease;
    }

/* GALERIA */
   
    * { box-sizing: border-box; }
    body { 
        margin: 0; 
        background-color: #000; 
        color: #eee; 
        font-family: 'Courier New', monospace; 
        overflow-x: hidden;
    }

   
    .mandela-textbox {
        position: relative; 
        max-width: 900px;
        width: 95%;
        margin: 40px auto;
        background: #0a0a0a;
        border: 1px solid #333;
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    .textbox-header {
        background: #1a1a1a;
        color: #f40101;
        padding: 12px 15px;
        font-weight: bold;
        font-size: 0.9em;
        border-bottom: 1px solid #333;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .textbox-content {
        padding: 30px 25px;
        line-height: 1.6;
        text-align: justify;
        word-wrap: break-word;
    }


    .internal-stamp {
        position: absolute;
        top: 50px; 
        right: 20px;
        border: 3px double #f40101;
        color: #f40101;
        padding: 5px 12px;
        font-weight: bold;
        font-size: 1.2em;
        text-transform: uppercase;
        transform: rotate(15deg);
        opacity: 0.8;
        background: rgba(10, 0, 0, 0.9);
        pointer-events: none; 
        z-index: 2;
    }

    .main-title {
        text-align: center;
        color: #f40101;
        letter-spacing: 5px;
        margin-top: 40px;
        text-transform: uppercase;
        font-size: 1.8em;
    }

/* FONDO */

body {
    background-image: 
    linear-gradient(rgba(0, 0, 0, 0.552), rgba(0, 0, 0, 0.513)), 
    url("RecursosJeffreyim/color\ de\ fondo.png");
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

        .folder {
            max-width: 800px;
            margin: 50px auto;
            border: 2px solid #7e0000;
            padding: 40px;
            position: relative;
            background: rgba(0, 0, 0, 0.8);
            box-shadow: 0 0 20px rgba(246, 71, 71, 0.5);
        }

        .stamp {
            position: absolute;
            top: 20px;
            right: 20px;
            border: 4px solid #ff0101;
            color: #ff0000;
            padding: 10px;
            font-weight: bold;
            text-transform: uppercase;
            transform: rotate(15deg);
            opacity: 0.7;
            user-select: none;
        }

        h1 {
            border-bottom: 2px solid #792121;
            padding-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }


        .back-btn:hover {
            color: rgb(253, 7, 7);
            text-shadow: 0 0 10px #f50303;
        }

        .data-row {
            margin-bottom: 15px;
        }

        .label {
            color: #ff0000;
            font-weight: bold;
            text-transform: uppercase;
        }


    .folder {
    max-width: 800px;
    margin: 20px auto;
    padding: 40px;
    background-color: #000000; 
    border: 1px solid #333;
    position: relative;
    font-family: 'Courier New', Courier, monospace;
    color: #eee;
}

.stamp {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 3px solid #ff0000;
    color: #ff0000;
    padding: 5px 10px;
    font-weight: bold;
    transform: rotate(15deg);
    opacity: 0.7;
}

.label {
    color: #ff0000;
    font-weight: bold;
    margin-right: 10px;
}

.data-row {
    margin-bottom: 10px;
}
    
    .map-evidence-container {
        max-width: 800px;
        margin: 40px auto 80px auto; 
        background: #050505;
        border: 2px solid #1a1a1a;
        font-family: 'Courier New', monospace;
        position: relative;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    }

    .textbox-header {
        background: #1a1a1a;
        color: #00ff00; 
        padding: 10px;
        font-size: 0.8rem;
        letter-spacing: 2px;
        border-bottom: 2px solid #333;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .blink {
        color: #ff0000;
        animation: blink-animation 1s steps(5, start) infinite;
    }

    .map-responsive {
        position: relative;
        padding-bottom: 56.25%; 
        height: 0;
        overflow: hidden;
        filter: sepia(100%) hue-rotate(80deg) contrast(1.2) brightness(0.8);
        transition: 0.5s;
    }

    .map-responsive:hover {
        filter: sepia(0%) hue-rotate(0deg) contrast(1) brightness(1);
    }

    .map-responsive iframe {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        border: 0;
    }

 .scanline {
        width: 100%;
        height: 100px;
        z-index: 10;
        background: linear-gradient(0deg, rgba(0, 255, 0, 0) 0%, rgba(0, 255, 0, 0.05) 50%, rgba(0, 255, 0, 0) 100%);
        opacity: 0.1;
        position: absolute;
        bottom: 100%;
        animation: scanline 4s linear infinite;
        pointer-events: none;
    }

    .map-footer {
        padding: 12px;
        background: #000;
        border-top: 1px solid #333;
    }

    .status-box {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        font-size: 11px;
    }

    .danger-text { color: #ff0000; font-weight: bold; }
    .coords { color: #888; }

    .video-section {
        max-width: 800px;
        margin: 80px auto 40px auto; 
        padding: 20px;
        background: #050505;
        border: 2px solid #000000;
        box-shadow: 0 0 20px rgba(52, 13, 13, 0.1);
        position: relative;
    }

    .vhs-screen {
        position: relative;
        border: 15px solid #1a1a1a;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: inset 0 0 50px rgba(0, 0, 0, 1), 0 0 15px rgba(226, 0, 0, 0.3);
        background: #000;
    }


    .vhs-screen::after {
        content: " ";
        position: absolute;
        top: 0; left: 0; bottom: 0; right: 0;
        background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
                    linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
        z-index: 2;
        background-size: 100% 2px, 3px 100%;
        pointer-events: none;
    }

    .vhs-screen::before {
        content: "▶ PLAY";
        position: absolute;
        top: 20px; left: 20px;
        color: #ff0000;
        font-size: 1.2rem;
        z-index: 3;
        text-shadow: 0 0 5px #ff0000;
        animation: flicker 1.5s infinite;
    }


    .vhs-footer {
        margin-top: 15px;
        padding: 10px;
        background: #1a1a1a;
        color: #ff0202; 
        font-family: 'Courier New', monospace;
        font-size: 0.8rem;
        letter-spacing: 2px;
        border-top: 1px solid #333;
        text-transform: uppercase;
    }

    @keyframes blink-animation { to { visibility: hidden; } }
    @keyframes scanline { 0% { bottom: 100%; } 100% { bottom: -100px; } }
    @keyframes flicker {
        0% { opacity: 0.8; }
        50% { opacity: 1; }
        100% { opacity: 0.9; }
    }


    .gallery-section {
        padding: 40px 20px;
        background: #000000;
        color: #ffffff;
        text-align: center;
    }

 .gallery-title {
        font-family: 'Courier New', Courier, monospace;
        letter-spacing: 5px;
        border-bottom: 1px solid #770707;
        display: inline-block;
        margin-bottom: 30px;
    }

    .evidence-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .evidence-item {
        background: #0a0a0a;
        border: 1px solid #ff0000;
        padding: 10px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .evidence-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        filter: grayscale(100%) contrast(120%) brightness(80%);
        transition: all 0.5s ease;
    }

    .evidence-label {
        margin-top: 10px;
        font-size: 12px;
        font-family: 'Courier New', Courier, monospace;
        color: #ff0000;
    }

    .evidence-item:hover {
        border-color: #ff0808;
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
        transform: translateY(-5px);
    }

    .evidence-item:hover img {
        filter: grayscale(0%) contrast(110%) brightness(100%);
        transform: scale(1.05);
    }

    .evidence-item::after {
        content: "";
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
                    linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
        background-size: 100% 2px, 3px 100%;
        pointer-events: none;}
    


    .killer-profile {
        background-color: transparent;
        padding: 60px 20px;
        color: #e0e0e0;
        font-family: 'Courier New', Courier, monospace;
       
    }

    .profile-container {
        max-width: 900px;
        margin: 0 auto;
        border: 1px solid #5b1b1b;
        padding: 30px;
        background: #000000cc;
    }

    .glitch-box h2 {
        color: #ff0000;
        text-align: center;
        font-size: 2rem;
        text-shadow: 2px 2px #550000;
        margin-bottom: 30px;
    }

    .profile-content {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        align-items: flex-start;
    }


    .profile-image {
        position: relative;
        flex: 1;
        min-width: 250px;
        border: 2px solid #5f0202;
        overflow: hidden;
    }

    .profile-image img {
        width: 100%;
        display: block;
        filter: contrast(200%) grayscale(100%) brightness(50%);
    }

    .static-effect {
        animation: noise 0.2s infinite;
    }

    @keyframes noise {
        0% { transform: translate(0,0); }
        50% { transform: translate(-1px, 1px); }
        100% { transform: translate(1px, -1px); }
    }

    .profile-data {
        flex: 2;
        min-width: 300px;
    }

    .data-block {
        margin-top: 25px;
        padding: 15px;
        background: #282828;
        border-left: 4px solid #450202;
    }

    .blink-red {
        color: #ff0000;
        animation: blink 1s infinite;
    }

    @keyframes blink {
        50% { opacity: 0; }
    }


    .censored {
        background: #e0e0e0;
        color: #e0e0e0;
        cursor: help;
    }

    .warning-text {
        color: #ff0000;
        font-weight: bold;
        text-align: center;
        margin-top: 20px;
        font-size: 0.9rem;
    }

    
    @media (max-width: 768px) {
        .profile-content { flex-direction: column; }
    }



    .killer-profile {
        background-color: transparent;
        padding: 60px 20px;
        color: #e0e0e0;
        font-family: 'Courier New', Courier, monospace;
    }


     .profile-container {
        max-width: 900px;
        margin: 0 auto;
        border: 1px solid #330000;
        padding: 30px;
        background: rgba(10, 0, 0, 0.8);
    }

    .glitch-box h2 {
        color: #ff0000;
        text-align: center;
        font-size: 2rem;
        text-shadow: 2px 2px #550000;
        margin-bottom: 30px;
    }

    .profile-content {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .profile-image {
        position: relative;
        flex: 1;
        min-width: 250px;
        border: 2px solid #ff0000;
        overflow: hidden;
    }

    .profile-image img {
        width: 100%;
        display: block;
        filter: contrast(200%) grayscale(100%) brightness(50%);
    }

    .static-effect {
        animation: noise 0.2s infinite;
    }

    @keyframes noise {
        0% { transform: translate(0,0); }
        50% { transform: translate(-1px, 1px); }
        100% { transform: translate(1px, -1px); }
    }

    .profile-data {
        flex: 2;
        min-width: 300px;
    }

 .data-block {
        margin-top: 25px;
        padding: 15px;
        background: #111;
        
    }

    .blink-red {
        color: #ff0000;
        animation: blink 1s infinite;
    }

    @keyframes blink {
        50% { opacity: 0; }
    }

    .censored {
        background: #e0e0e0;
        color: #e0e0e0;
        cursor: help;
    }

 .warning-text {
        color: #ff0000;
        font-weight: bold;
        text-align: center;
        margin-top: 20px;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .profile-content { flex-direction: column; }
    }

    
    .image-container-horror {
        display: flex;
        flex-wrap: wrap; 
        justify-content: center;
        gap: 20px;
        padding: 20px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .evidence-frame {
        background-color: #0a0a0a;
        border: 1px solid #333;
        padding: 10px;
        text-align: center;
        width: 280px; 
        max-width: 100%; 
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
        transition: transform 0.3s ease;
    }

    .evidence-frame:hover {
        border-color: #f40101; 
        transform: translateY(-5px);
    }

    .entity-img-medium {
        width: 100%;
        height: 200px; 
        object-fit: cover; 
        filter: grayscale(40%) contrast(120%); 
        display: block;
        margin-bottom: 10px;
        border: 1px solid #222;
    }
    
    .frame-label {
        font-family: 'Courier New', monospace;
        color: #f40101;
        font-size: 0.8em;
        font-weight: bold;
        letter-spacing: 2px;
        border-top: 1px solid #333;
        padding-top: 8px;
        text-transform: uppercase;
    }

    @media (max-width: 600px) {
        .evidence-frame {
            width: 100%; 
        }
    }

    
    * { box-sizing: border-box; }
    body { 
        margin: 0; 
        background-color: #000; 
        color: #eee; 
        font-family: 'Courier New', monospace; 
        overflow-x: hidden;
    }

    .mandela-textbox {
        position: relative; 
        max-width: 900px;
        width: 95%;
        margin: 40px auto;
        background: #0a0a0a;
        border: 1px solid #333;
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    .textbox-header {
        background: #1a1a1a;
        color: #f40101;
        padding: 12px 15px;
        font-weight: bold;
        font-size: 0.9em;
        border-bottom: 1px solid #333;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .textbox-content {
        padding: 30px 25px;
        line-height: 1.6;
        text-align: justify;
        word-wrap: break-word;
    }

    .internal-stamp {
        position: absolute;
        top: 50px; 
        right: 20px;
        border: 3px double #f40101;
        color: #f40101;
        padding: 5px 12px;
        font-weight: bold;
        font-size: 1.2em;
        text-transform: uppercase;
        transform: rotate(15deg);
        opacity: 0.8;
        background: rgba(10, 0, 0, 0.9);
        pointer-events: none; 
        z-index: 2;
    }
    .main-title {
        text-align: center;
        color: #f40101;
        letter-spacing: 5px;
        margin-top: 40px;
        text-transform: uppercase;
        font-size: 1.8em;
    }

    
    .image-container-horror {
        display: flex;
        flex-wrap: wrap; 
        justify-content: center;
        gap: 20px;
        padding: 20px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .evidence-frame {
        background-color: #0a0a0a;
        border: 1px solid #333;
        padding: 10px;
        text-align: center;
        width: 280px; 
        max-width: 100%; 
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
        transition: transform 0.3s ease;
    }

    .evidence-frame:hover {
        border-color: #f40101; 
        transform: translateY(-5px);
    }

    .entity-img-medium {
        width: 100%;
        height: 200px; 
        object-fit: cover; 
        filter: grayscale(40%) contrast(120%); 
        display: block;
        margin-bottom: 10px;
        border: 1px solid #222;
    }
    
    .frame-label {
        font-family: 'Courier New', monospace;
        color: #f40101;
        font-size: 0.8em;
        font-weight: bold;
        letter-spacing: 2px;
        border-top: 1px solid #333;
        padding-top: 8px;
        text-transform: uppercase;
    }

    @media (max-width: 600px) {
        .evidence-frame {
            width: 100%; 
        }
    }

    
    * { box-sizing: border-box; }
    body { 
        margin: 0; 
        background-color: #000; 
        color: #eee; 
        font-family: 'Courier New', monospace; 
        overflow-x: hidden;
    }

    .mandela-textbox {
        position: relative; 
        max-width: 900px;
        width: 95%;
        margin: 40px auto;
        background: #0a0a0a;
        border: 1px solid #333;
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    .textbox-header {
        background: #1a1a1a;
        color: #f40101;
        padding: 12px 15px;
        font-weight: bold;
        font-size: 0.9em;
        border-bottom: 1px solid #333;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .textbox-content {
        padding: 30px 25px;
        line-height: 1.6;
        text-align: justify;
        word-wrap: break-word;
    }

    
    .internal-stamp {
        position: absolute;
        top: 50px; 
        right: 20px;
        border: 3px double #f40101;
        color: #f40101;
        padding: 5px 12px;
        font-weight: bold;
        font-size: 1.2em;
        text-transform: uppercase;
        transform: rotate(15deg);
        opacity: 0.8;
        background: rgba(10, 0, 0, 0.9);
        pointer-events: none; 
        z-index: 2;
    }

    .main-title {
        text-align: center;
        color: #f40101;
        letter-spacing: 5px;
        margin-top: 40px;
        text-transform: uppercase;
        font-size: 1.8em;
    }


    
    .image-container-horror {
        display: flex;
        flex-wrap: wrap; 
        justify-content: center;
        gap: 20px;
        padding: 20px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .evidence-frame {
        background-color: #0a0a0a;
        border: 1px solid #333;
        padding: 10px;
        text-align: center;
        width: 280px; 
        max-width: 100%; 
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
        transition: transform 0.3s ease;
    }

    .evidence-frame:hover {
        border-color: #f40101; 
        transform: translateY(-5px);
    }

    .entity-img-medium {
        width: 100%;
        height: 200px; 
        object-fit: cover; 
        filter: grayscale(40%) contrast(120%); 
        display: block;
        margin-bottom: 10px;
        border: 1px solid #222;
    }
    
    .frame-label {
        font-family: 'Courier New', monospace;
        color: #f40101;
        font-size: 0.8em;
        font-weight: bold;
        letter-spacing: 2px;
        border-top: 1px solid #333;
        padding-top: 8px;
        text-transform: uppercase;
    }

    @media (max-width: 600px) {
        .evidence-frame {
            width: 100%; 
        }
    }

    .evidence-archive, .evidence-archive * {
        box-sizing: border-box;
    }

    .evidence-archive {
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        padding: 20px;
    }

    /* ESTILOS DE AUDIO */
    .audio-section {
        margin-bottom: 50px;
    }

    .section-subtitle {
        color: #eee;
        text-align: center;
        font-family: 'Courier New', Courier, monospace;
        letter-spacing: 3px;
        margin-bottom: 25px;
        text-transform: uppercase;
    }

    .audio-group-horizontal {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .audio-item {
        flex: 1 1 300px;
        max-width: 450px;
        background: #000;
        padding: 20px;
        border: 1px solid #222;
        text-align: center;
    }

    .media-label {
        color: #f40101;
        font-family: 'Courier New', monospace;
        font-size: 13px;
        margin-bottom: 15px;
    }

    audio {
        width: 100%;
        filter: invert(100%) hue-rotate(180deg); 
    }

    /* VIDEO */
    .video-evidence-container {
        background: #0a0a0a;
        border: 1px solid #333;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
        overflow: hidden;
    }

    .textbox-header {
        background: #1a1a1a;
        color: #f40101;
        padding: 10px 15px;
        font-family: 'Courier New', monospace;
        font-weight: bold;
        border-bottom: 1px solid #333;
    }

    .video-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px;
        background: #000;
        justify-content: center;
    }

    .video-wrapper {
        flex: 1 1 calc(50% - 15px);
        min-width: 280px;
        position: relative;
        background: #000;
        border: 1px solid #222;
        display: flex;
        flex-direction: column;
    }

    .local-video {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        filter: grayscale(30%) contrast(1.1);
    }

    .video-label {
        background: #1a1a1a;
        color: #ff0101;
        font-family: 'Courier New', monospace;
        font-size: 11px;
        padding: 8px;
        text-align: center;
    }

    .video-footer {
        padding: 10px 15px;
        font-family: 'Courier New', monospace;
        font-size: 11px;
        color: #444;
        background: #050505;
        text-align: right;
    }

    .video-wrapper::after {
        content: "";
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%);
        background-size: 100% 4px;
        pointer-events: none;
        opacity: 0.15;
    }

    @media (max-width: 600px) {
        .video-wrapper { flex: 1 1 100%; }
        .audio-item { flex: 1 1 100%; }
    }

<!--Colaboradores-->

  .related-section {
    padding: 60px 20px;
    text-align: center;
    background-color: transparent;
  }

  .related-title {
    color: #ff0000;
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 40px;
  }

  .related-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
  }

  .artist-link {
    text-decoration: none;
    transition: transform 0.3s ease;
  }


  .circle-frame {
    width: 150px;
    height: 150px;
    border-radius: 50%; 
    overflow: hidden;
    border: 3px solid #ff0000;
    box-shadow: 0 0 15px rgba(204, 10, 10, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 15px;
  }

  .circle-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    filter: grayscale(40%);
    transition: all 0.3s ease;
  }

  
  .artist-link:hover .circle-frame {
    transform: scale(1.1);
    border-color: #ff0000;
    box-shadow: 0 0 25px #ff0000;
  }

  .artist-link:hover img {
    filter: grayscale(0%);
  }

  .artist-name {
    color: azure;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 10px;
    font-family: 'Georgia', serif;
  }

   
    .main-footer {
        background: #050505;
        color: #888;
        font-family: 'Courier New', Courier, monospace;
        padding: 50px 20px;
        border-top: 2px solid #1a1a1a;
        margin-top: 50px;
    }

    /* CONTENEDOR BIO */
    .creator-container {
        max-width: 800px;
        margin: 0 auto 50px auto;
        border: 1px solid #ff0000;
        padding: 25px;
        background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
    }

    .creator-header {
        display: flex;
        align-items: center;
        gap: 15px;
        border-bottom: 1px solid #ff0000;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    .status-dot {
        width: 10px; height: 10px;
        background-color: #ff0000;
        border-radius: 50%;
        box-shadow: 0 0 10px #ff0000;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.3; }
    }

    .creator-name { color: #ff0000; text-shadow: 0 0 5px rgba(255, 0, 0, 0.4); }

    .creator-links-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }

    .social-btn {
        padding: 10px;
        border: 1px solid #333;
        color: #ff0000;
        text-decoration: none;
        font-size: 12px;
        background: #0a0a0a;
        text-align: center;
        transition: 0.3s;
    }

    .social-btn:hover {
        background: #ff0000;
        color: #000;
        transform: translateY(-2px);
    }

    /* CONTENEDOR FORMULARIO */
    .contact-container {
        max-width: 800px;
        margin: 0 auto 50px auto;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        border-bottom: 1px solid #222;
        padding-bottom: 40px;
    }

    .contact-info { flex: 1; min-width: 250px; }
    .contact-info h3 { color: #ff0000; margin-bottom: 10px; }

    .contact-form { flex: 1.5; min-width: 300px; display: flex; flex-direction: column; gap: 10px; }
    
    .form-group input, .form-group textarea {
        width: 100%; padding: 10px;
        background: #111; border: 1px solid #333;
        color: #eee; font-family: inherit; outline: none;
    }

    .form-group input:focus, .form-group textarea:focus { border-color: #ff0000; }

    .submit-btn {
        background: #ff0000; color: #000;
        border: none; padding: 12px;
        font-weight: bold; cursor: pointer; transition: 0.3s;
    }

    .submit-btn:hover { background: #d40000; transform: scale(1.02); }

    /* ICONOS REDES SOCIALES */
    .social-icon-section { text-align: center; margin-bottom: 40px; }
    .social-title { font-size: 0.8rem; color: #555; letter-spacing: 3px; margin-bottom: 20px; }

    .social-icon-links { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
    
    .social-icon-item {
        color: #444; text-decoration: none;
        display: flex; flex-direction: column; align-items: center; gap: 8px;
        transition: 0.3s;
    }

    .social-icon-item i { font-size: 1.8rem; }
    .social-icon-item span { font-size: 0.6rem; font-weight: bold; }

    .social-icon-item:hover {
        color: #ff0000;
        text-shadow: 2px 0 #ff0000, -2px 0 #00ff00;
    }

    /* FOOTER BOTTOM */
    .footer-bottom {
        text-align: center; border-top: 1px solid #222;
        padding-top: 20px; font-size: 10px; opacity: 0.4;
    }



