* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.bg-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(40px) brightness(0.4);
    z-index: -1;
    transform: scale(1.1); /* Prevents white edges from blur */
}

.wrapper {
    width: 100%;
    max-width: 550px;
    padding: 40px 20px;
    text-align: center;
}

/* Header Section */
.album-art {
    width: 250px;
    height: 250px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 24px;
}

h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.description {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 40px;
}

.service-list {
    background: rgba(255, 255, 255, 0.05); 
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s;
}

.service-row:hover {
    background: rgba(255, 255, 255, 0.1);
}

.service-logo {
    font-weight: bold;
    font-size: 1.1rem;
}

.service-logo img {
    height: 48px; 
    width: auto;
    display: block;
}

.cta-button {
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.cta-button:hover {
    background-color: #fff;
    color: #000;
}

footer {
    margin-top: 30px;
    font-size: 0.7rem;
    opacity: 0.4;
}