/* links y botones */
a,
button {
    cursor: url("./cursors/Troll Face - Precision Select.cur"), pointer;
}

/* hover links */
a:hover,
button:hover {
    cursor: url("./cursors/Troll Face - Precision Select.cur"), pointer;
}

/* campos de texto */
input,
textarea {
    cursor: url("./cursors/Troll Face - Text Select.cur"), text;
}

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

html,
body,
*{
    font-family:
        "Times New Roman",
        "Liberation Serif",
        "Nimbus Roman",
        "Times",
        serif;
}

body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: url("./cursors/Troll Face - Normal Select.cur"), auto;

}

footer {
    color: #fff;
    margin-block: 20px;
    font-size: 1.3rem;
    font-style: italic;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 10px;
}

footer a {
    color: #fff;
    text-shadow: 1px 1px 2px #7c4dff;
    font-style: italic;
}

footer a:hover {
    text-shadow: 2px 2px 3px #5400ff;
    text-decoration: underline;
}

body::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('./imgs/strokes.gif');
    background-size: contain;
    background-position: center;

    filter: grayscale(100%) contrast(140%) brightness(80%);
    z-index: -1;
}

.container {
    width: 75%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-block: 20px;
    padding-inline: 0px;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-inline: 10px;
    border: 1px solid #fff;
    border-radius: 0px;
    justify-content: space-evenly;
    height: 120px;
    position: relative;
}

nav h1 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 3px #5400ff;
}

nav::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(84, 0, 255, 0.7),
            rgba(0, 0, 0, 0.9)),
        url('./imgs/arabiandrift.jpg');

    background-size: contain;
    background-position: center;

    background-blend-mode: multiply;
    z-index: -1;
}

nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    color: #fff;
    list-style: none;
    gap: 50px;
    background: linear-gradient(to top,
            #5400ff,
            #2a006e,
            #000);
}

.nav-links {
    color: #fff;
    font-weight: bold;
    font-style: italic;
    font-size: 1.2rem;
    box-shadow: 0 0 10px #fff;
}


main {
    min-height: 100vh;
    margin-bottom: 20px;
    position: relative;
    padding: 30px;
    border: 1px solid #fff;
}



main::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('./imgs/fondo90s.jpg');
    background-size: auto;
    background-repeat: repeat;
    background-position: center;

    filter: brightness(80%) contrast(150%) grayscale(50%);
    z-index: -1;
}

.grid-layout {
    display: grid;
    grid-template-columns: 230px 1fr 230px;
    gap: 20px;
    margin-bottom: 0px;
    align-items: start;
}

.panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* columnas laterales */
.left-panel,
.right-panel {
    background: #000;
    border: 1px dashed #fff;

    padding: 15px;
    border-radius: 5px;

    height: fit-content;
}

.card {
    position: relative;
    background: rgba(0, 0, 0, 0.9);
    padding: 30px 20px 20px;
    color: white;

    border: 1px dashed #ffffff;
    border-radius: 10px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card-title {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: #5400ff;
    text-shadow: 1px 1px #7c4dff;

    background: rgba(0, 0, 0);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 1.2rem;
    white-space: nowrap;
    /* evita salto de línea */
    min-width: 130px;
    /* lo estira */
    text-align: center;
}


.large-card {
    min-height: 220px;
}



.card ul {
    list-style: disc;
    margin-left: 18px;
}

@media(max-width: 1100px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 760px) {
    .container {
        width: 95%;
    }

    nav {
        padding-inline: 20px;
        height: auto;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.profile-card {
    background: none !important;
    text-decoration: overline;
    border: none !important;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-style: italic;
}

.profile-card p:hover {
    text-shadow: 2px 2px 3px #5400ff;
    text-decoration: underline;
}

.profile-info {
    gap: 20px;
    display: flex;
    align-items: center;
}

.profile-name {
    font-size: 2.5rem;
    text-shadow: 2px 2px 3px #5400ff;
}

.profile-card img {
    width: 180px;
    height: 180px;
}

.contact-card {
    position: relative;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    font-size: 2rem;
    border-radius: 20px;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: none;
    font-size: 1rem;
}

.contact-form textarea {
    height: 200px;
}

.contact-form button {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    color: #fff;
    font-style: italic;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    background: transparent;
    font-size: 1.8rem;
    cursor: pointer;
    text-shadow: 2px 2px 3px #5400ff;
}

.contact-form button:hover {
    text-shadow: 2px 2px 3px #5400ff;
    text-decoration: underline;
}

.form-title {
    text-shadow: 2px 2px 3px #5400ff;
}

.contact-links {
    margin-left: 18px;
}

.contact-links li {
    list-style: square;
    margin-bottom: 10px;
    background: linear-gradient(to top,
            #5400ff,
            #000);

}

.contact-links > li > a {
    color: #fff;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px #7c4dff;
    text-decoration: underline;
    font-style: italic;
}

.contact-links a:hover {
    text-shadow: 2px 2px 3px #5400ff;
    text-decoration: overline;
}

.about-card {
    background: linear-gradient(to top,
            #5400ff,
            #000);
}

.about-header{
    font-style: italic;
}

.about-card h2 {
    text-shadow: 2px 2px 3px #5400ff;
}

.about-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.glowpad {
    margin: 0 auto;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.glow {
    margin: 0 auto;
    width: 100%;
    height: 150px;
    border: 3px solid #5400ff;
    background: #5400ff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #5400ff, 0px 0px 10px #5400ff, 0px 0px 10px #5400ff, 0px 0px 10px #5400ff, 0px 0px 14px #5400ff;
    color: white;
    overflow-y: auto;
}


/*PROYECTOS VINILOS*/
.projects-card {
    background: transparent !important;
    width: 100%;
    overflow: visible;
    /* ← importante */
    margin-bottom: 20px;
    /* ← separación con la sección siguiente */
}

.projects-card h2 {
    text-shadow: 2px 2px 3px #5400ff;
}

/*
#vinyl-gallery {
    width: 100%;
    height: 240px;

    display: flex;
    align-items: center;

    gap: 6px;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 10px;
}

#vinyl-gallery::-webkit-scrollbar {
    height: 8px;
}

#vinyl-gallery::-webkit-scrollbar-thumb {
    background: transparent;
}

.vinyl-item {
    position: relative;
}

.vinyl {
    width: 25px;
    transition: .5s;
    perspective: 500px;
}

.vinyl:hover {
    width: 180px;
}

.vinyl img {
    width: 180px;
    height: 180px;

    object-fit: cover;


    transform: rotateY(25deg);

    transition: .5s;

}

.vinyl:hover img {
    transform: rotateY(10deg) scale(1.05);
}

.title {
    position: absolute;

    width: 180px;
    bottom: -25px;
    left: 0;

    opacity: 0;

    color: white;
    text-align: center;

    font-size: .8rem;

    transition: .3s;
}

.vinyl:hover+.title {
    opacity: 1;
}*/

.projects-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 30px;
    gap: 10px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    color: #fff;
    text-shadow: 2px 2px 3px #5400ff;
    padding: 20px;
    font-size: 1rem;
    font-style: italic;
}

.projects-header img {
    width: 40px;
    height: 40px;
}

main {
    min-height: 100vh;
    position: relative;
}

/* reemplazá esto que ya tenés: */
.webdeck-player-container {
    position: absolute;
    width: 600px;
    height: 250px;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.webdeck-player-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.music-player {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;

    background: #000;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;

    position: relative;



    padding: 15px;
}

.player-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.player-info img {
    width: 60px;
    height: 60px;

    object-fit: cover;

    border: 2px solid #5400ff;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.player-controls button {
    background: black;
    color: #fff;

    border: 1px solid #5400ff;

    padding: 8px;

    cursor: pointer;
}

#progress {
    width: 250px;
}

#volume {
    width: 100px;
}

.dj-gif {
    position: absolute;
    width: 150px;
    height: 150px;
    left: -170px;
    z-index: 1;
}

.speaker-gif {
    position: absolute;
    width: 200px;
    height: 100px;
    top: 0px;
    right: -20px;
    z-index: 1;
}


.skills-card {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    display: flex;
}

.skills-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 30px;
    background-color: transparent;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    color: #fff;
    text-shadow: 2px 2px 3px #5400ff;
    padding: 20px;
    font-size: 1rem;
    font-style: italic;
}

.skills-gif-container {
    display: flex;
    justify-content: start;
    width: 100%;
    margin-bottom: 20px;
}

.skill-sticker>img {
    width: 100px;
    height: 40px;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: start;
}

.skills-gif {
    width: 180px;
    height: 170px;
}

.bottom-gif {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.email-card {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    display: flex;
}

.email-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 30px;
    background-color: transparent;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    color: #fff;
    text-shadow: 2px 2px 3px #5400ff;
    padding: 20px;
    font-size: 1rem;
    font-style: italic;
}


:root {
    --cd-image: url('https://fluorescent-lights.neocities.org/Digital-CD-Disk-Vector-Transparent-PNG.png');
}

.projects-layout {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}

.recordPlayer {
    position: relative;
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}

/* disco */
.recordPlayer::before {
    content: "";
    position: absolute;

    width: 120px;
    height: 120px;

    background-image: var(--cd-image);
    background-size: contain;
    background-repeat: no-repeat;

    top: 10px;
    right: -25px;

    z-index: 0;

    animation: spin 5s linear infinite;
    transition: right .5s ease;
}

.recordPlayer:hover::before {
    right: -65px;
}

/* caja */
.cd-case {
    position: relative;
    width: 160px;
    height: 140px;
    z-index: 2;
}

.cd-title {
    text-wrap: wrap;
    font-style: italic;
    font-weight: bold;
    text-shadow: 1px 1px 2px #7c4dff;
    margin-top: 8px;
    text-align: center;
    margin-top: 8px;
    color: #fff;
    font-size: 1.1rem;
    width: 100%;
}
.tracklist-title{
    text-wrap: wrap;
    font-style: italic;
    font-weight: bold;
    text-shadow: 1px 1px 2px #7c4dff;
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    width: 100%;   
}

.track{
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
}

.track:hover {
    text-shadow: 2px 2px 3px #5400ff;
    text-decoration: underline;
}

/* brillo solo encima de la caja */
.cd-case::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        url('https://fluorescent-lights.neocities.org/f0rzNHe.png'),
        linear-gradient(150deg,
            rgba(255, 255, 255, .4),
            rgba(255, 255, 255, .2),
            transparent 40%,
            rgba(255, 255, 255, .1),
            rgba(255, 255, 255, .5));

    background-size: contain, cover;

    pointer-events: none;
    z-index: 3;
}

.cover {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border: 2px solid rgba(255, 255, 255, .25);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.tracklist{
    color: #fff;
    margin-top: 2px;
    display: flex; 
    flex-direction: column;
    align-items: center;
    background-color: rgb(15, 15, 15);
    padding-block: 20px;
    padding-inline: 50px;
    border-radius: 10px;
}