/* ═══════════════════════════════
   Vote page styles
   ═══════════════════════════════ */

.vote-hero {
    text-align: center;
    padding: 3rem 0 1.5rem;
}
.vote-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.4rem;
    color: var(--accent);
    text-shadow: 0 0 30px rgba(0,255,136,0.3);
    margin-bottom: 0.8rem;
}
.vote-hero p {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.vote-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 700px;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
}
.vote-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
}
.vote-card:hover {
    border-color: var(--accent-dim);
    box-shadow: var(--glow);
}
.reward-box {
    background: var(--accent-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}
.reward-box .reward-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}
.reward-box .reward-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(255,215,0,0.3);
}
.reward-box .reward-desc {
    color: var(--text);
    margin-top: 0.5rem;
    font-size: 0.95rem;
}
.vote-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: var(--bg-dark);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0,255,136,0.2);
    margin-top: 1rem;
}
.vote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0,255,136,0.4);
}
.vote-card .steps {
    margin: 2rem 0 1rem;
    text-align: left;
}
.vote-card .steps h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 1rem;
}
.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(0,255,136,0.03);
    border-radius: 8px;
}
.step-num {
    background: var(--accent);
    color: var(--bg-dark);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}
.step-text {
    color: var(--text);
    line-height: 1.5;
}
.step-text strong {
    color: var(--text-bright);
}
.cooldown-note {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    text-align: center;
}
.cooldown-note strong {
    color: var(--accent);
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .vote-hero h1 { font-size: 1.6rem; }
    .vote-hero p { font-size: 0.9rem; }
    .vote-card { padding: 1.5rem; margin: 1rem auto; }
    .reward-box { padding: 1rem; }
    .reward-box .reward-emoji { font-size: 2.2rem; }
    .reward-box .reward-name { font-size: 1.05rem; }
    .vote-btn { font-size: 1rem; padding: 0.8rem 1.8rem; }
    .step { padding: 0.5rem; gap: 0.7rem; }
    .step-num { width: 28px; height: 28px; font-size: 0.8rem; }
}

/* ── Claim Section ── */
.claim-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}
.claim-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.claim-desc {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}
.claim-desc strong {
    color: var(--text-bright);
}
.claim-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.claim-form input[type="text"] {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-bright);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 0.7rem 1rem;
    width: 220px;
    outline: none;
    transition: border-color 0.2s;
}
.claim-form input[type="text"]:focus {
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(0,255,136,0.15);
}
.claim-form input[type="text"]::placeholder {
    color: var(--text-dim);
}
.claim-btn {
    background: linear-gradient(135deg, var(--gold), #e6a800);
    color: var(--bg-dark);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 12px rgba(255,215,0,0.15);
}
.claim-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(255,215,0,0.3);
}
.claim-msg {
    padding: 1rem 1.2rem;
    border-radius: 10px;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}
.claim-success {
    background: rgba(0,255,136,0.08);
    border: 1px solid rgba(0,255,136,0.3);
    color: var(--accent);
}
.claim-fail {
    background: rgba(255,68,68,0.08);
    border: 1px solid rgba(255,68,68,0.3);
    color: #ff6b6b;
}
