/* album.css */
.album-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.album-header {
    text-align: center;
    margin-bottom: 2rem;
}

.album-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.album-stats {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.progress-bar-container {
    width: 300px;
    height: 10px;
    background: var(--bg-primary);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-bar {
    height: 100%;
    background: var(--accent-color);
    width: 0%;
    transition: width 0.3s ease;
}

.team-section {
    margin-bottom: 3rem;
}

.team-title {
    font-size: 1.8rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-stats {
    font-size: 1rem;
    color: var(--text-secondary);
}

.stickers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
}

.sticker {
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border: 2px solid #ccc;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.6;
}

.sticker:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.sticker.collected {
    filter: grayscale(0%);
    opacity: 1;
    border-color: gold;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
}

.sticker-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.sticker-name {
    position: absolute;
    bottom: 5px;
    font-size: 0.7rem;
    color: white;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    background: rgba(0,0,0,0.3);
    padding: 2px 0;
}

/* Animations */
@keyframes collectAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.sticker.just-collected {
    animation: collectAnimation 0.4s ease;
}
