h4[data-i18n="dashboard.votes.progression.title"], 
.vote-rewards h4 {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px;
}

h4[data-i18n="dashboard.votes.progression.title"]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 48px;
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

.vote-rewards h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

h4[data-i18n="dashboard.votes.progression.title"] i, 
.vote-rewards h4 i {
    margin-right: 10px;
    color: var(--color-beige);
    margin-left: 5px;
}

.reward-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(240, 196, 84, 0.3) !important;
    background: linear-gradient(145deg, rgba(20, 12, 8, 0.7), rgba(30, 20, 15, 0.7)) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border-radius: 15px !important;
    padding: 18px !important;
}

.reward-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 196, 84, 0.1) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.5;
    transform: rotate(30deg);
    transition: all 0.5s ease;
    pointer-events: none;
}

.reward-item:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(240, 196, 84, 0.5) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 10px 15px rgba(0, 0, 0, 0.2) !important;
}

.reward-item:hover::before {
    opacity: 1;
    animation: shine-particle 2s infinite linear;
}

@keyframes shine-particle {
    0% { transform: rotate(30deg) translateY(0); }
    100% { transform: rotate(30deg) translateY(60px); }
}

.reward-icon {
    position: relative;
    width: 65px !important;
    height: 65px !important;
    border-radius: 15px !important;
    background: linear-gradient(145deg, rgba(241, 196, 15, 0.2), rgba(241, 196, 15, 0.3)) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
}

.reward-icon i {
    color: #f0c454 !important;
    font-size: 2rem !important;
    text-shadow: 0 0 10px rgba(240, 196, 84, 0.5) !important;
    animation: float-icon 3s infinite ease-in-out;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.reward-info {
    flex: 1;
}

.reward-name {
    display: block;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    background: linear-gradient(to right, #f0c454, #fff4d9, #f0c454);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.reward-desc {
    display: block;
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500 !important;
    position: relative;
    padding-left: 5px;
}

.reward-desc::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, rgba(240, 196, 84, 0.4), transparent);
}

.current-tier-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #bb8e36, #f0c454);
    color: #1e160e;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 8px rgba(240, 196, 84, 0.4);
    position: relative;
    overflow: hidden;
}

.current-tier-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine-badge 3s infinite;
}

@keyframes shine-badge {
    0% { transform: rotate(30deg) translateX(-100%); }
    100% { transform: rotate(30deg) translateX(100%); }
}

@media (max-width: 768px) {
    h4[data-i18n="dashboard.votes.progression.title"] {
        font-size: 1.4rem !important;
    }
    
    .reward-name {
        font-size: 1.4rem !important;
    }
    
    .reward-desc {
        font-size: 1rem !important;
    }
    
    h4[data-i18n="dashboard.votes.progression.title"]::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    h4[data-i18n="dashboard.votes.progression.title"] {
        text-align: center;
    }
}

@media (max-width: 576px) {
    h4[data-i18n="dashboard.votes.progression.title"] {
        font-size: 1.3rem !important;
    }
    
    .reward-icon {
        width: 55px !important;
        height: 55px !important;
    }
    
    .reward-icon i {
        font-size: 1.7rem !important;
    }
}