/**
 * rewards_styles.css
 * Premium aesthetics for the Thornes Loyalty Sanctuary
 */

.rewards-hud {
    background: rgba(46, 64, 51, 0.8); /* Forest semi-trans */
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #FDFCF8; /* Paper white */
    margin-top: -60px; /* Overlap with hero */
    position: relative;
    z-index: 10;
}

.text-gold {
    color: #D4AF37;
    background: linear-gradient(45deg, #D4AF37, #F4D125);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gold {
    background: linear-gradient(45deg, #D4AF37, #F4D125);
}

.seeds-count {
    font-size: 3.5rem;
    line-height: 1;
}

.tier-progress-container {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-track {
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.tier-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

@media (max-width: 600px) {
    .seeds-count {
        font-size: 2.5rem;
    }
    .rewards-hud {
        margin-top: -40px;
    }
}
