/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    height: 100%;
    background: url('assets/background.jpg') repeat;
}

/* Background Styling */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 512px;
    width: 512px;
    height: 512px;
    background: url('assets/background.jpg') repeat;
    background-repeat: repeat;
    z-index: -1;
}

/* Container Styling */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    min-height: 100%;
    padding: 20px;
    gap: 20px;
    max-width: 360px;
    margin: 0 auto;
}

.playlists, .socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

/* Image Styling */
.image {
    max-width: 90%;
    max-height: 40%;
}

/* Button Styling */
.button, .playlist-button, .social-button, .deactivated-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 360px;
    padding: 15px;
    margin: 10px 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

.deactivated-button{
    cursor: not-allowed;
}

.button:hover, .playlist-button:hover, .social-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.button span, .playlist-button span, .social-button span, .deactivated-button span {
    font-size: 1.2em;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.button:hover::before, .playlist-button:hover::before, .social-button:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    z-index: -1;
    animation: pulse 1s infinite;
}

/* Icon Styling */
.icon img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 10px;
    mix-blend-mode: lighten;
}

/* Service-Specific Icon Filters */
.spotify img {
    filter: invert(52%) sepia(62%) saturate(555%) hue-rotate(89deg) brightness(97%) contrast(95%);
}

.apple-music img {
    filter: blur(2px) grayscale(90%);
}


.bluesky img {
    width: 60px;
    height: 60px;
    filter: invert(60%) sepia(70%) saturate(1939%) hue-rotate(165deg) brightness(92%) contrast(88%);
}

.stationhead img {
    filter: invert(99%) sepia(97%) saturate(7462%) hue-rotate(326deg) brightness(98%) contrast(107%);
}

/* Animation Keyframes */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    70% {
        transform: scale(1);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}
