/* ========================================
   ESTILOS ESPECÍFICOS PARA LA PÁGINA HOME
======================================== */

/* ========================================
   SECCIÓN HERO
======================================== */
.hero-section {
    width: 100%;
    padding: 12rem 1rem 8rem;
    display: flex;
    justify-content: center;
    background-image: var(--gradient-primary);
    color: var(--light-text);
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0% 100%);
    margin-bottom: -4vw;
    position: relative;
    z-index: 1;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 2;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-date {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.date-label {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.date-label:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.date {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.year {
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0.9;
}

/* ========================================
   SECCIÓN PREVIEW DEL JUEGO
======================================== */
.game-preview-section {
    width: 100%;
    padding: 6rem 1rem 10rem;
    display: flex;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 3rem));
    margin-top: -1px;
    position: relative;
    z-index: 0;
    margin-bottom: -5vw;
}

.game-preview-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.game-preview-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.game-preview-text h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.game-preview-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--muted-text);
}

/* Variante para fondo oscuro (votación activa) */
.game-preview-text-dark {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.game-preview-text-dark h2 {
    font-size: 2rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.game-preview-text-dark p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--light-text);
    opacity: 0.9;
}

.game-frame-container {
    margin: 0 auto;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.game-frame-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* Aspect ratio 9:16 */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.game-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.game-frame-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.fullscreen-button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.fullscreen-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.game-title {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ========================================
   Seccion de reclutamiento
======================================== */

.recruitment-section {
    width: 100%;
    padding: 8rem 1rem 10rem;
    display: flex;
    justify-content: center;
    background-color: var(--dark-bg-light);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 3rem));
    margin-top: -4rem;
    position: relative;
    z-index: 0;
    margin-bottom: -4vw;
}

.recruitment-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.recruitment-content {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
}

.recruitment-text {
    flex: 2;
    color: var(--light-text);
}

.recruitment-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    color: var(--light-text);
}

.recruitment-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--light-text);
    opacity: 0.9;
}

.recruitment-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    color: var(--light-text);
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.benefit-text p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--light-text);
    opacity: 0.8;
}

.recruitment-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.recruitment-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 350px;
}

.card-header {
    background-color: var(--primary-dark);
    padding: 1.5rem;
    text-align: center;
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--light-text);
    margin: 0;
}

.card-content {
    padding: 2rem 1.5rem;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.4;
}

.requirements-list li svg {
    color: var(--highlight-color);
    flex-shrink: 0;
}

.card-footer {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.deadline-info {
    text-align: center;
}

.deadline-label {
    display: block;
    font-size: 0.9rem;
    color: var(--light-text);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.deadline-date {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--highlight-color);
}

.recruitment-cta {
    text-align: center;
    padding: 3rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.recruitment-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light-text);
    font-weight: bold;
}

.recruitment-cta p {
    font-size: 1.1rem;
    color: var(--light-text);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-recruit-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--highlight-color);
    color: var(--dark-text);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-recruit-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: var(--highlight-light);
}

.btn-recruit-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--light-text);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-recruit-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Responsive para recruitment */
@media (max-width: 992px) {
    .recruitment-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .recruitment-text {
        flex: none;
    }
    
    .recruitment-visual {
        flex: none;
    }
    .recruitment-content {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .recruitment-section {
        padding: 8rem 1rem 8rem;
    }
    
    .recruitment-text h2 {
        font-size: 2rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
    }
    
    .recruitment-cta {
        padding: 2rem 1rem;
    }
    
    .recruitment-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-recruit-primary,
    .btn-recruit-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
}

.btn-recruit-primary:hover .icon-bounce-hover {
    animation: fa-bounce 1s ease-in-out;
}

/* ========================================
   SECCIÓN LEADERBOARD
======================================== */
.leaderboard-section {
    width: 100%;
    padding: 12rem 1rem 10rem;
    display: flex;
    justify-content: center;
    background-color: var(--dark-bg-light);
    color: var(--light-text);
    clip-path: polygon(0 0, 100% 2rem, 100% 100%, 0% 100%);
    margin-top: -1px;
    position: relative;
    z-index: 0;
    margin-bottom: -5vw;
}

.leaderboard-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.leaderboard-header {
    text-align: center;
    margin-bottom: 1rem;
}

.leaderboard-header h2 {
    font-size: 2rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.leaderboard-header p {
    font-size: 1.1rem;
    color: var(--light-text);
}

.leaderboard-table-container {
    overflow-x: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-radius: 8px;
}

.leaderboard-table {
    border-collapse: collapse;
    background-color: var(--light-bg);
    color: var(--dark-text);
}

.leaderboard-table th {
    background-color: var(--primary-dark);
    color: var(--light-text);
    padding: 1rem;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.leaderboard-table td {
    padding: 1rem;
    border-bottom: 1px solid #eaeaea;
    color: var(--dark-text);
}

.leaderboard-table tbody tr:hover {
    background-color: var(--light-bg);
}

.leaderboard-table .rank {
    font-weight: bold;
    width: 60px;
    text-align: center;
}

.leaderboard-table .player {
    font-weight: 500;
}

.leaderboard-table .score {
    font-weight: bold;
    color: var(--secondary-dark);
}

.gold-rank {
    background-color: rgba(255, 215, 0, 0.1);
}

.gold-rank .rank {
    color: var(--gold-color);
}

.silver-rank {
    background-color: rgba(192, 192, 192, 0.1);
}

.silver-rank .rank {
    color: var(--silver-color);
}

.bronze-rank {
    background-color: rgba(205, 127, 50, 0.1);
}

.bronze-rank .rank {
    color: var(--bronze-color);
}

.leaderboard-footer {
    text-align: center;
    font-style: italic;
    color: var(--light-text);
    margin-top: 1rem;
}

/* ========================================
   SECCIÓN DE VOTACIÓN
======================================== */
.voting-section {
    width: 100%;
    padding: 8rem 1rem 3rem;
    display: flex;
    justify-content: center;
    background-image: var(--gradient-accent);
    color: var(--light-text);
    clip-path: polygon(0 1.1rem, 100% 0, 100% 100%, 0% 100%);
    margin-top: -1px;
    position: relative;
    z-index: 0;
}

.voting-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.voting-content {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
}

.voting-text {
    flex: 3;
}

.voting-image {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.voting-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.voting-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.voting-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.highlight-item-light {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(103, 126, 234, 0.1);
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(103, 126, 234, 0.2);
}

.highlight-item-light:hover {
    transform: translateX(10px);
    background-color: rgba(103, 126, 234, 0.15);
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 0.5rem;
}

.highlight-icon-light {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(103, 126, 234, 0.2);
    border-radius: 50%;
    padding: 0.5rem;
    color: var(--primary-dark);
}

.highlight-item p {
    font-size: 1.1rem;
}

.trophy-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.trophy {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trophy-top {
    width: 100px;
    height: 120px;
    background-color: var(--highlight-color);
    border-radius: 50px 50px 0 0;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.trophy-stem {
    width: 30px;
    height: 50px;
    background-color: var(--highlight-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.trophy-base {
    width: 80px;
    height: 20px;
    background-color: var(--highlight-color);
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.trophy-plate {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    width: 200px;
}

.trophy-plate span:first-child {
    font-weight: bold;
    font-size: 1.2rem;
}

.voting-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.voting-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.btn-vote {
    display: inline-block;
    background-color: var(--highlight-color);
    color: var(--dark-text);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-vote:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: var(--highlight-light);
}

/* ========================================
   MEDIA QUERIES RESPONSIVE
======================================== */
@media (max-width: 992px) {
    .voting-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-section {
        padding: 8rem 1rem 6rem;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
    }
    
    .game-preview-section {
        padding: 4rem 1rem 8rem;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
    }
    
    .leaderboard-section {
        padding: 8rem 1rem 8rem;
        clip-path: polygon(0 2rem, 100% 0, 100% 100%, 0% 100%);
    }
    
    .voting-section {
        padding: 6rem 1rem 3rem;
    }

    /* Estilos responsive para la tabla */
    .leaderboard-table {
        width: 100%;
    }
    
    .leaderboard-table th,
    .leaderboard-table td {
        padding: 0.75rem;
    }
}

/* ========================================
   SECCIÓN LETS VOTE (VOTACIÓN ACTIVA)
======================================== */
.lets-vote-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lets-vote-content {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
}

.lets-vote-text {
    flex: 3;
}

.lets-vote-visual {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lets-vote-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: none;
    color: var(--primary-dark);
}

.lets-vote-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

/* Estadísticas de votación */
.voting-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Animación de urna de votación */
.vote-box-animation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vote-box {
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.vote-slot {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.vote-papers {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.paper {
    width: 12px;
    height: 16px;
    background: white;
    border-radius: 2px;
    opacity: 0.9;
}

.floating-votes {
    position: absolute;
    width: 300px;
    height: 300px;
    pointer-events: none;
}

.floating-vote {
    position: absolute;
    font-size: 1.5rem;
    animation: floatVote 4s infinite ease-in-out;
}

.floating-vote:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-vote:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-vote:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

/* CTA de votación */
.lets-vote-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(103, 126, 234, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(103, 126, 234, 0.15);
}

.voted-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.voted-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.cta-message {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-vote-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-vote-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary-dark);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-dark);
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
}

/* Animaciones */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes floatVote {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Responsive para lets-vote */
@media (max-width: 768px) {
    .lets-vote-content {
        flex-direction: column;
        text-align: center;
    }
    
    .voting-stats {
        justify-content: center;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 1rem;
    }
    
    .vote-box {
        width: 150px;
        height: 120px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-vote-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}