body{
    font-family:'Patrick Hand', cursive;

    background:
    repeating-linear-gradient(
        90deg,
        #e7edf8 0px,
        #e7edf8 60px,
        #d8e4f5 60px,
        #d8e4f5 120px
    );

    color:#333;

    padding:20px;
}

/* CONTENEDOR */
.container{
    max-width:1000px;
    margin:auto;

    background:rgba(255,255,255,.92);

    padding:25px;

    border:8px dashed #ff7d7d;
    border-radius:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* LOGO */
.logo{
    text-align:center;
    margin-bottom:20px;
}

.logo span{
    font-size:3.5rem;
    font-family:'Special Elite', monospace;
    margin:0 2px;
}

/* MENU */
.menu{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;

    margin-bottom:25px;
}

.menu a{
    text-decoration:none;
    color:#d94848;
}

/* TITULO */
.section-title{
    text-align:center;

    margin:20px 0;

    font-family:'Special Elite', monospace;

    color:#d94848;
}

/* GRID MUSICAL */
.music-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:20px;

    margin-top:25px;
}

/* TARJETAS */
.music-card{
    background:#fffaf3;

    padding:20px;

    border-radius:20px;

    border:3px solid #eadfd3;

    box-shadow:0 6px 15px rgba(0,0,0,.08);

    transition:.3s;
}

.music-card:hover{
    transform:translateY(-5px) rotate(-1deg);
    background:#fff4f4;
}

.music-card h3{
    font-family:'Special Elite', monospace;

    margin-bottom:10px;

    color:#d94848;
}

/* CANCIÓN */
.song-player{
    margin-top:40px;

    background:#ffd6e7;

    padding:25px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 8px 18px rgba(0,0,0,.10);

    border:3px dashed #ff9dbb;
}

.song-player iframe{
    border-radius:15px;
    margin-top:10px;
}

/* REPRODUCTOR FALSO */
.playlist-box{
    margin-top:40px;

    background:#fff3bf;

    padding:25px;

    border-radius:25px;

    text-align:center;

    border:3px dashed #f2d6a5;
}

.fake-player{
    margin:10px auto;

    padding:15px;

    background:white;

    border-radius:15px;

    font-family:'Special Elite', monospace;

    width:fit-content;
}

/* 🖼️ IMAGEN ARTISTAS (ESTO ES LO IMPORTANTE) */
.artist-img{
    width:120px;   /* 👈 tamaño real pequeño */

    height:auto;

    display:block;

    margin:15px auto 0 auto;

    border-radius:12px;

    border:3px dashed #f2d6a5;

    box-shadow:0 6px 12px rgba(0,0,0,.15);

    transition:.3s;
}

.artist-img:hover{
    transform:scale(1.05) rotate(-2deg);
}

/* RESPONSIVE */
@media(max-width:768px){

.music-grid{
    grid-template-columns:1fr;
}

.logo span{
    font-size:2.5rem;
}
.banner{
    width:100%;

    display:flex;
    justify-content:center;

    margin:20px 0;
}

.banner img{
    width:100%;
    max-width:850px;

    height:auto;

    display:block;

    border-radius:20px;

    border:4px dashed #ff9dbb;

    box-shadow:0 8px 18px rgba(0,0,0,.12);

    object-fit:cover;
}
.banner img{
    width:50%;

    max-width:800px;

    border-radius:25px;

    border:5px solid white;

    outline:4px dashed #ff7d7d;

    box-shadow:10px 10px 0px #ffd6e7;

    transform:rotate(-1deg);
}
.movie-list{
    display:flex;
    flex-direction:column;

    gap:20px;

    margin-top:25px;
}

/* cada película */
.movie-item{
    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:20px;

    background:#fffaf3;

    padding:20px;

    border-radius:20px;

    border:3px solid #eadfd3;

    box-shadow:0 6px 15px rgba(0,0,0,.08);

    transition:.3s;
}

.movie-item:hover{
    transform:translateY(-5px) rotate(-1deg);
    background:#fff4f4;
}

/* texto */
.movie-text{
    flex:1;
}

.movie-text h3{
    font-family:'Special Elite', monospace;

    color:#d94848;

    margin-bottom:10px;
}

/* imagen derecha */
.movie-img{
    width:110px;
    height:140px;

    object-fit:cover;

    border-radius:12px;

    border:3px dashed #ff9dbb;

    box-shadow:0 6px 12px rgba(0,0,0,.12);

    transition:.3s;
}

.movie-img:hover{
    transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:768px){

.movie-item{
    flex-direction:column;
    text-align:center;
}

.movie-img{
    width:150px;
    height:180px;
}

.movie-list{
    display:flex;
    flex-direction:column;

    gap:20px;

    margin-top:25px;
}

/* cada película */
.movie-item{
    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:20px;

    background:#fffaf3;

    padding:20px;

    border-radius:20px;

    border:3px solid #eadfd3;

    box-shadow:0 6px 15px rgba(0,0,0,.08);

    transition:.3s;
}

.movie-item:hover{
    transform:translateY(-5px) rotate(-1deg);
    background:#fff4f4;
}

/* texto */
.movie-text{
    flex:1;
}

.movie-text h3{
    font-family:'Special Elite', monospace;

    color:#d94848;

    margin-bottom:10px;
}

/* imagen derecha */
.movie-img{
    width:110px;
    height:140px;

    object-fit:cover;

    border-radius:12px;

    border:3px dashed #ff9dbb;

    box-shadow:0 6px 12px rgba(0,0,0,.12);

    transition:.3s;
}

.movie-img:hover{
    transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:768px){

.movie-item{
    flex-direction:column;
    text-align:center;
}

.movie-img{
    width:150px;
    height:180px;
}
}
}