.main-content {
    flex: 1 0 auto;
    width: 100%;
}

.vote-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.vote-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
    position: relative;
}

.vote-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.vote-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vote-subtitle {
    font-size: 1.3rem;
    color: var(--text);
    opacity: 0.8;
}

.vote-buttons {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin: 40px 0 60px 0;
}

.big-vote-btn {
    width: 100%;
    max-width: 500px;
    padding: 30px 0;
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    background: var(--card);
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    position: relative;
    transition: box-shadow 0.3s, transform 0.2s, background 0.3s, color 0.3s;
    outline: none;
}

.big-vote-btn:hover, .big-vote-btn:focus {
    box-shadow: 0 0 60px 10px var(--primary-color), 0 0 20px 0 var(--primary-color);
    transform: translateY(-5px) scale(1.03);
    background: var(--primary-color);
    color: #fff;
}

footer {
    flex-shrink: 0;
    width: 100%;
}

@media (max-width: 900px) {
    .vote-buttons {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .vote-container {
        margin: 30px 20px; 
    }
    
    .vote-title {
        font-size: 2.2rem;
    }
    
    .big-vote-btn {
        font-size: 1.5rem;
        padding: 22px 0;
    }
}

@media (max-width: 480px) {
    .vote-container {
        margin: 20px 15px;
    }
    
    .vote-title {
        font-size: 1.9rem;
    }
    
    .vote-subtitle {
        font-size: 1.1rem;
    }
}