/* ============================================
   CARDS DE GANHADORES - VERSÃO PREMIUM V7.0
   Layout: Cards Individuais estilo Instagram/Sorteio
   ============================================ */

.ganhadores-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    background: transparent;
}

/* CARD DE GANHADOR - ESTILO SOLICITADO */
.ganhador-card-v7 {
    background: #ffffff;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 10px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform 0.2s;
}

.ganhador-card-v7:active {
    transform: scale(0.98);
}

/* NUMERAÇÃO GRANDE À ESQUERDA */
.ganhador-rank-v7 {
    font-size: 48px;
    font-weight: 900;
    color: #333;
    min-width: 50px;
    text-align: center;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

/* CONTEÚDO CENTRAL */
.ganhador-info-v7 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ganhador-nome-v7 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.ganhador-tag-v7 {
    background: #28a745;
    color: white;
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    width: fit-content;
}

.ganhador-detalhe-v7 {
    font-size: 13px;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ganhador-detalhe-v7 b {
    color: #333;
}

/* ÍCONES DE AÇÃO */
.ganhador-actions-v7 {
    display: flex;
    gap: 15px;
    margin-top: 8px;
    align-items: center;
}

.action-icon-v7 {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    background: #f8f9fa;
    color: #666;
    border: 1px solid #eee;
}

.action-icon-v7.whatsapp {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.2);
}

.action-icon-v7.copy {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.2);
}

/* BOTÃO OLHO / VER DETALHES */
.btn-view-v7 {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #333;
    font-size: 18px;
    cursor: pointer;
}

/* MODO ESCURO */
body.dark-mode .ganhador-card-v7 {
    background: #1e2329;
    border-color: #2b3139;
}

body.dark-mode .ganhador-rank-v7 {
    color: #eaecef;
}

body.dark-mode .ganhador-nome-v7 {
    color: #ffffff;
}

body.dark-mode .ganhador-detalhe-v7 {
    color: #848e9c;
}

body.dark-mode .ganhador-detalhe-v7 b {
    color: #eaecef;
}

body.dark-mode .action-icon-v7 {
    background: #2b3139;
    border-color: #363d47;
    color: #848e9c;
}

/* ESTILO DO BOTÃO "ENTRAR" SOLICITADO */
.btn-entrar-v7 {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}
