/* ========== VOTE PAGE STYLES ========== */

.vote-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    min-height: calc(100vh - 200px);
}

.vote-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vote-intro h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
}

.vote-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.vote-intro p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ========== VOTE INSTRUCTIONS ========== */
.vote-instructions {
    margin-bottom: 50px;
}

.vote-instructions h2 {
    text-align: center;
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.instruction-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.instruction-card {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.instruction-card.java {
    border-color: #4CAF50;
}

.instruction-card.bedrock {
    border-color: #2196F3;
}

.instruction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: currentColor;
}

.instruction-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
}

.instruction-card.java .instruction-icon {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.instruction-card.bedrock .instruction-icon {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.instruction-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.instruction-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.5;
}

.example {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid currentColor;
}

.example-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.username-example {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
    padding: 8px 15px;
    border-radius: 20px;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: bold;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.instruction-note {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.instruction-note i {
    font-size: 1.5rem;
    color: #ffd700;
    flex-shrink: 0;
}

.instruction-note p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.instruction-note strong {
    color: #ffd700;
}

/* ========== VOTE INFO BANNER ========== */
.vote-info-banner {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.vote-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #1a1a2e;
}

.vote-banner-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 26, 46, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vote-banner-icon i {
    font-size: 2rem;
    color: #1a1a2e;
}

.vote-banner-text h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.vote-banner-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ========== VOTE STATISTICS (removed) ========== */

/* ========== VOTE SITES ========== */
.vote-sites {
    margin-bottom: 60px;
}

.vote-sites h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.vote-description {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.vote-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.vote-site-card {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.vote-site-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.vote-site-header {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.vote-site-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vote-site-icon i {
    font-size: 2rem;
    color: #1a1a2e;
}

.vote-site-info h3 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 8px;
}

.vote-site-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.vote-site-footer {
    padding: 25px 30px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vote-btn-primary {
    background: linear-gradient(to right, #28a745, #20c997);
    color: white;
    border: 2px solid transparent;
}

.vote-btn-primary:hover {
    background: linear-gradient(to right, #218838, #1ba085);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
    color: white;
}

.vote-btn-secondary {
    background: linear-gradient(to right, #6f42c1, #e83e8c);
    color: white;
    border: 2px solid transparent;
}

.vote-btn-secondary:hover {
    background: linear-gradient(to right, #5a2d91, #d91a7a);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.4);
    color: white;
}

.vote-btn.voted {
    animation: vote-success 0.6s ease;
}

@keyframes vote-success {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); background: linear-gradient(to right, #ffd700, #ff8c00); }
    100% { transform: scale(1); }
}

.vote-frequency {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.vote-frequency i {
    color: var(--primary);
}

/* ========== VOTE REWARDS ========== */
.vote-rewards {
    margin-bottom: 60px;
}

.vote-rewards h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.rewards-banner {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.reward-immediate {
    display: flex;
    align-items: center;
    gap: 25px;
}

.reward-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reward-icon i {
    font-size: 2rem;
    color: #1a1a2e;
}

.reward-info h3 {
    font-size: 1.6rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.reward-info p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.reward-note {
    display: inline-block;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 500;
}

.monthly-contest {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.monthly-contest h3 {
    text-align: center;
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.contest-description {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.podium-section h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

.podium-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.podium-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.podium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
}

.podium-card.gold {
    border-color: #ffd700;
    color: #ffd700;
}

.podium-card.silver {
    border-color: #c0c0c0;
    color: #c0c0c0;
}

.podium-card.bronze {
    border-color: #cd7f32;
    color: #cd7f32;
}

.position {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.medal {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.reward-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reward-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: white;
}

.other-rewards h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

.reward-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.reward-tier {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-rank {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
}

.tier-reward {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.tier-reward i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ========== VOTE CTA ========== */
.vote-cta {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(155, 89, 182, 0.1));
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-actions .btn-primary {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
}

.cta-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
    color: white;
}

.cta-actions .btn-secondary {
    background: linear-gradient(to right, #7289da, #5e77c9);
    color: white;
}

.cta-actions .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(114, 137, 218, 0.4);
    color: white;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .vote-buttons {
        grid-template-columns: 1fr;
    }
    
    .vote-site-header {
        padding: 25px;
    }
    
    .vote-site-footer {
        padding: 20px 25px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .vote-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .vote-section {
        padding: 40px 0;
    }
    
    .vote-intro h2 {
        font-size: 2rem;
    }
    
    .vote-instructions h2 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .instruction-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .instruction-card {
        padding: 20px;
    }
    
    .instruction-note {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .vote-info-banner {
        padding: 20px;
        margin-bottom: 40px;
    }
    
    .vote-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .vote-banner-icon {
        width: 60px;
        height: 60px;
    }
    
    .vote-banner-text h3 {
        font-size: 1.5rem;
    }
    
    .vote-sites h2 {
        font-size: 1.8rem;
    }
    
    .vote-buttons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vote-site-card {
        border-radius: 15px;
    }
    
    .vote-site-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .vote-site-icon {
        width: 60px;
        height: 60px;
    }
    
    .vote-site-icon i {
        font-size: 1.5rem;
    }
    
    .vote-site-info h3 {
        font-size: 1.3rem;
    }
    
    .podium-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .reward-tiers {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .reward-immediate {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .monthly-contest {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .vote-intro h2 {
        font-size: 1.6rem;
    }
    
    .vote-intro p {
        font-size: 1rem;
    }
    
    .vote-description {
        font-size: 1rem;
    }
    
    .vote-site-header {
        padding: 15px;
    }
    
    .vote-site-footer {
        padding: 15px;
    }
    
    .reward-coming-soon {
        padding: 30px 20px;
    }
    
    .reward-coming-soon i {
        font-size: 2.5rem;
    }
    
    .reward-coming-soon h3 {
        font-size: 1.5rem;
    }
}