/* Alle bestehenden Styles aus dem <style> Tag */
body {
    margin: 0;
    padding: 0;
    font-family: 'Underdog', cursive;
    background-color: #000;
    color: #fff;
}

.header {
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 40px;
    height: 400px;
    position: relative;
}

.logo {
    position: absolute;
    top: 40px;
    left: 40px;
    text-align: left;
}

.logo svg {
    max-width: 200px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.left-column {
    flex: 1;
    max-width: 600px;
}

.right-column {
    flex: 1;
    max-width: 400px;
    margin-top: 60px;
}

.intro {
    color: #E6007E;
    margin-bottom: 40px;
    text-align: left;
    transform: rotate(-3deg);
    margin-top: 50px;
    margin-left: 50px;
}

.intro h1 {
    margin-bottom: 30px;
}

.intro p {
    text-align: justify;
    margin-bottom: 20px;
    line-height: 1.4;
}

.search-box {
    background-color: #000;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #E6007E;
    text-align: center;
}

.search-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.singles {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.single-item {
    flex: 1;
    text-align: center;
}

.single-cover {
    width: 100%;
    max-width: 100px;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
    margin-bottom: 8px;
}

.single-title {
    font-size: 12px;
    color: #E6007E;
    margin-top: 5px;
}

.single-cover:hover {
    transform: scale(1.05);
}

.music-platforms {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.music-platforms img {
    height: 22px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.2s;
}

/* Spezifischer Style für Apple Music Logo */
.music-platforms a:first-child img {
    width: 88px;
    height: 22px;
}

/* Spezifischer Style für Spotify Logo */
.music-platforms a:last-child img {
    width: 88px;
    height: 27px;
}

.music-platforms img:hover {
    opacity: 1;
}

.music-platforms a {
    text-decoration: none;
}

.highlight {
    color: #E6007E;
}

.escalator {
    width: 100%;
    position: relative;
    margin: 60px 0;
}

.escalator img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .header {
        height: 300px;
        padding: 20px;
        margin-bottom: 40px;
    }

    .logo {
        top: 20px;
        left: 20px;
    }

    .logo svg {
        max-width: 150px;
    }

    .content {
        flex-direction: column;
        padding: 0;
        gap: 40px;
        max-width: none;
    }

    .left-column,
    .right-column {
        max-width: none;
        width: 100%;
        padding: 0;
    }

    .right-column {
        margin-top: 20px;
    }

    .intro {
        transform: rotate(-2deg);
        margin-bottom: 50px;
        padding: 0 30px;
        margin-top: 0px;
        margin-left: 0px;
    }

    .intro h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .intro p {
        font-size: 18px;
        line-height: 1.4;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .search-box {
        padding: 40px 0;
        margin: 0;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        width: 100%;
    }

    .search-title {
        font-size: 24px;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .highlight {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .singles {
        gap: 10px;
        margin: 40px 0;
        padding: 0 20px;
    }

    .music-platforms {
        gap: 25px;
        margin-top: 40px;
    }

    .escalator {
        margin: 60px 0;
    }
}

/* Kleine Smartphones */
@media (max-width: 480px) {
    .header {
        height: 200px;
    }

    .logo svg {
        max-width: 120px;
    }

    .intro h1 {
        font-size: 24px;
    }

    .intro p {
        font-size: 16px;
        padding: 0 15px;
    }

    .search-box {
        padding: 20px 15px;
    }

    .search-title {
        font-size: 20px;
    }

    .singles {
        gap: 8px;
    }

    .single-cover {
        max-width: 70px;
    }

    .single-title {
        font-size: 10px;
    }

    .music-platforms {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    /* Spezifische Logo-Größen für kleine Bildschirme */
    .music-platforms a:first-child img {
        width: 70px;
        height: 18px;
    }

    .music-platforms a:last-child img {
        width: 70px;
        height: 22px;
    }
}

/* Sehr kleine Smartphones */
@media (max-width: 360px) {
    .intro h1 {
        font-size: 22px;
    }

    .intro p {
        font-size: 14px;
    }

    .single-cover {
        max-width: 60px;
    }

    .single-title {
        font-size: 9px;
    }

    .music-platforms a:first-child img {
        width: 60px;
        height: 15px;
    }

    .music-platforms a:last-child img {
        width: 60px;
        height: 19px;
    }
} 