:root {
    --primary-color: #ffffff;
    --secondary-color: #e0e0e0;
    --accent-color: #00aaff;
    --glass-bg: rgba(0, 0, 0, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    height: 100%;
    overflow: hidden; 
}

.background-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: kenburns 20s infinite;
}

.background-slideshow .slide.active {
    opacity: 1;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.1) translate(-2%, 2%);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}

.content-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.album-container {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 50px;
    text-align: center;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    animation: popIn 0.8s ease-out forwards;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.album-container h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: var(--text-shadow);
}

.album-container p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 30px;
    text-shadow: var(--text-shadow);
}

.album-container a.link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.album-container a.link:hover {
    text-decoration: underline;
}

.album-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.album-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 400;
    padding: 15px 25px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.album-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.home-link a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.home-link a:hover {
    color: var(--primary-color);
}
