/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

body {
    background-color: #121212;
    color: #ffffff;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Main Content Styles */
.main-content {
    margin-top: 80px;
    padding: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Voting Section */
.voting-section {
    padding: 4rem 0;
    text-align: center;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.vote-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vote-card {
    background: rgba(25, 25, 25, 0.8);
    border: none;
    border-radius: 20px;
    padding: 1.5rem;
    max-width: 100%;
    margin: 0;
    min-height: 180px;
}

.vote-card-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.vote-site-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.vote-site-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.vote-site-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.vote-site-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
    text-align: left;
}

.vote-site-details p {
    font-size: 0.9rem;
    color: #b0b0b0;
    text-align: left;
}

.vote-card-body {
    text-align: left;
}

.vote-button {
    display: block;
    margin: 0 auto;
}

.reward-preview h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.rewards-list {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}

.reward-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(200, 200, 200, 0.1);
    padding: 0.4rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.reward-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.reward-icon-fa {
    font-size: 0.8rem;
    color: #ffffff;
}

/* Vote Button Styles */
.vote-button {
    position: relative;
    padding: 8px 25px;
    background: #ffffff;
    font-size: 16px;
    font-weight: 500;
    color: #121212;
    border: 2px solid #ffffff;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
    }
    
    .vote-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .rewards-list {
        flex-direction: column;
        gap: 0.5rem;
    }
}
