/* Vote Page Styles */

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
    text-align: center;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
}

.vote-hero {
    padding: 4rem 2rem 2rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
}

.hero-title-highlight {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 0 auto 3rem;
    max-width: 600px;
    text-align: center;
}

.vote-links-section {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 6rem;
}

.vote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 1.5rem;
}

.vote-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--text-main) 8%, transparent);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-main);
}

.vote-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 210, 255, 0.3);
    background: color-mix(in srgb, var(--text-main) 5%, transparent);
}

.vote-card-content {
    display: flex;
    flex-direction: column;
}

.vote-domain {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.vote-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.vote-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vote-text-gradient {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.3s ease;
}

.vote-icon {
    width: 24px;
    height: 24px;
    color: var(--mc-blue);
    transition: transform 0.3s ease;
}

.vote-card:hover .vote-icon {
    transform: translateX(5px);
}

.vote-card-description {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 5px;
}

.vote-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-card);
    border: 1px solid color-mix(in srgb, var(--text-main) 8%, transparent);
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.vote-empty-icon {
    width: 64px;
    height: 64px;
    color: var(--mc-blue);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.vote-empty-title {
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.vote-empty-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 560px) {
    .vote-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}