:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #c4c4c4;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-hover: rgba(255, 255, 255, 0.18);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Interactive Canvas Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 700px;
    padding: 2rem;
    z-index: 1;
    text-align: center;
}

header {
    margin-bottom: 2.5rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
}

/* Contact Info with Icons */
.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.contact-link:hover {
    color: #fff;
    background: var(--glass-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Music Section */
.music-section {
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Album Header - Cover + Info */
.album-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.album-cover {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.album-cover:hover {
    transform: scale(1.05) rotate(-2deg);
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-info {
    text-align: left;
}

.album-info h2 {
    font-size: 2rem;
    margin: 0 0 0.3rem 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.album-label {
    margin: 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    opacity: 0.8;
}

/* Service Grid - Box Layout */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}

/* Glassy Box Buttons */
.service-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-box:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-box img {
    height: 26px;
    width: auto;
    object-fit: contain;
    max-width: 85px;
    filter: brightness(1.1);
}

.service-action {
    font-size: 0.7rem;
    opacity: 0.65;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 2px;
}

.text-fallback {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 0.8rem;
    }

    .album-header {
        flex-direction: column;
        text-align: center;
    }

    .album-info {
        text-align: center;
    }

    .album-cover {
        width: 140px;
        height: 140px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        padding: 1.5rem;
    }

    .music-section {
        padding: 1.5rem;
    }
}

@media (max-width: 380px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .service-box {
        padding: 14px 10px;
    }
}