/* Additional styles for Quests functionality */
.quests-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

.quest-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 10px;
}

.quest-info {
    display: flex;
    flex-direction: column;
}

.quest-title {
    font-size: 10px;
    font-weight: 600;
    color: white;
}

.quest-progress {
    font-size: 8px;
    color: #9a9eae;
}

.progress-bar {
    width: 100px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 5px;
}

.progress {
    height: 100%;
    background-color: #3d4caa;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.achievement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 10px;
}

.achievement-item.locked {
    opacity: 0.6;
}

.achievement-icon {
    font-size: 20px;
    margin-bottom: 5px;
}

.achievement-name {
    font-size: 8px;
    color: white;
    text-align: center;
}

.seasonal-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0;
}

.seasonal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.season-number {
    font-size: 40px;
    font-weight: bold;
    color: white;
    line-height: 1;
}

.season-name {
    font-size: 12px;
    color: white;
}

.season-timer {
    font-size: 10px;
    color: #ff5757;
    margin-top: 5px;
}

.season-progress {
    width: 100%;
    margin-bottom: 10px;
}

.progress-text {
    font-size: 8px;
    color: white;
    text-align: center;
    margin-top: 5px;
}