.vote-hero {
    min-height: 50vh; display: flex; align-items: center; justify-content: center;
    position: relative; padding: 120px 2rem 60px;
}

.vote-reward {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 0.8rem 1.5rem; border-radius: 12px;
    background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.2);
    font-size: 1rem;
}
.vote-reward i { color: var(--red); font-size: 1.2rem; animation: bounce 1s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.vote-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

.vote-card {
    display: flex; align-items: center; gap: 1.5rem;
    padding: 1.5rem 2rem; border-radius: 16px;
    background: var(--card); border: 1px solid var(--glass-border);
    transition: all 0.3s; cursor: none;
}
.vote-card:hover { transform: translateX(8px); border-color: var(--red); box-shadow: 0 10px 30px rgba(230,57,70,0.15); }

.vote-card-icon {
    width: 56px; height: 56px; min-width: 56px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 14px; font-size: 1.3rem;
    box-shadow: 0 6px 20px var(--red-glow);
}

.vote-card-info { flex: 1; }
.vote-card-info h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.2rem; }
.vote-card-info p { color: var(--text2); font-size: 0.9rem; }
.vote-tinyurl { font-size: 0.8rem; color: var(--red); font-family: monospace; }

.vote-card-arrow {
    width: 42px; height: 42px; min-width: 42px;
    display: flex; align-items: center; justify-content: center;
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: 10px; color: var(--text2); transition: all 0.3s;
}
.vote-card:hover .vote-card-arrow { background: var(--red); border-color: var(--red); color: white; transform: translateX(5px); }

.tinyurls-grid { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.tinyurl-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.5rem; border-radius: 12px;
    background: var(--card); border: 1px solid var(--glass-border);
    transition: border-color 0.3s;
}
.tinyurl-item:hover { border-color: var(--red); }
.tinyurl-site { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; }
.tinyurl-copy { display: flex; gap: 0.5rem; }
.tinyurl-copy input {
    background: var(--glass); border: 1px solid var(--glass-border); border-radius: 8px;
    color: var(--text2); padding: 0.5rem 1rem; font-family: monospace; font-size: 0.85rem;
    width: 200px; outline: none;
}
.tinyurl-copy button {
    width: 40px; height: 40px; min-width: 40px;
    background: var(--red); border: none; border-radius: 8px; color: white;
    display: flex; align-items: center; justify-content: center; cursor: none; transition: all 0.3s;
}
.tinyurl-copy button:hover { background: #ff4757; transform: scale(1.05); }

@media (max-width: 768px) {
    .vote-card { flex-wrap: wrap; }
    .vote-card-arrow { display: none; }
    .tinyurl-item { flex-direction: column; gap: 0.75rem; text-align: center; }
    .tinyurl-copy { width: 100%; }
    .tinyurl-copy input { flex: 1; width: auto; }
}
