/**
 * CSS do Torneio Grátis Diário - FynixGlobal
 * Painel completo com botões de trade
 */

/* ===== PAINEL PRINCIPAL DO TORNEIO ===== */
.free-tournament-panel {
    position: fixed;
    top: 80px;
    right: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 0;
    width: 280px;
    z-index: 9999;
    box-shadow: 0 5px 30px rgba(255, 215, 0, 0.3);
    animation: ftpSlideIn 0.5s ease-out;
    overflow: hidden;
}

@keyframes ftpSlideIn {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Header */
.ftp-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
}

.ftp-icon {
    font-size: 20px;
}

.ftp-title {
    font-weight: bold;
    font-size: 14px;
    flex: 1;
}

.ftp-timer {
    background: rgba(0,0,0,0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    font-family: monospace;
}

/* Seção de Saldo */
.ftp-balance-section {
    text-align: center;
    padding: 15px;
    background: rgba(0,0,0,0.2);
}

.ftp-balance-label {
    color: #888;
    font-size: 11px;
    margin-bottom: 5px;
}

.ftp-balance-value {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
}

.ftp-profit {
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
}

.ftp-profit.positive { color: #00ff88; }
.ftp-profit.negative { color: #ff4757; }

/* Posição e Stats */
.ftp-position-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    color: #aaa;
    font-size: 12px;
    background: rgba(0,0,0,0.1);
}

.ftp-position-section strong {
    color: #ffd700;
}

.ftp-stats {
    display: flex;
    gap: 10px;
}

.ftp-wins { color: #00ff88; font-weight: bold; }
.ftp-losses { color: #ff4757; font-weight: bold; }

/* Divisor */
.ftp-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin: 0;
}

/* Seção de Trade */
.ftp-trade-section {
    padding: 15px;
}

.ftp-input-row {
    margin-bottom: 12px;
}

.ftp-input-group label {
    display: block;
    color: #888;
    font-size: 11px;
    margin-bottom: 6px;
}

/* Botões de Tempo */
.ftp-time-buttons {
    display: flex;
    gap: 5px;
}

.ftp-time-btn {
    flex: 1;
    padding: 8px 5px;
    background: rgba(255,255,255,0.1);
    border: 1px solid #444;
    border-radius: 6px;
    color: #888;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.ftp-time-btn:hover {
    border-color: #ffd700;
    color: #fff;
}

.ftp-time-btn.active {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border-color: #ffd700;
    color: #000;
}

/* Controle de Valor */
.ftp-amount-control {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ftp-amount-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border: 1px solid #444;
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.ftp-amount-btn:hover {
    background: #ffd700;
    border-color: #ffd700;
    color: #000;
}

.ftp-amount-control input {
    flex: 1;
    padding: 8px;
    background: rgba(0,0,0,0.3);
    border: 1px solid #444;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
}

.ftp-amount-control input:focus {
    outline: none;
    border-color: #ffd700;
}

/* Info de Payout */
.ftp-payout-info {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #888;
    font-size: 11px;
    margin-bottom: 10px;
}

.ftp-payout-info strong {
    color: #00ff88;
}

/* Botões de Trade */
.ftp-trade-buttons {
    display: flex;
    gap: 10px;
}

.ftp-trade-btn {
    flex: 1;
    padding: 15px 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.ftp-trade-btn .btn-icon {
    font-size: 20px;
}

.ftp-trade-btn .btn-text {
    font-size: 12px;
    font-weight: bold;
}

.ftp-trade-btn.buy {
    background: linear-gradient(135deg, #00b894, #00a885);
    color: #fff;
}

.ftp-trade-btn.buy:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 184, 148, 0.5);
}

.ftp-trade-btn.sell {
    background: linear-gradient(135deg, #ff4757, #ff3344);
    color: #fff;
}

.ftp-trade-btn.sell:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 71, 87, 0.5);
}

/* Trade Pendente */
.ftp-pending-trade {
    text-align: center;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.ftp-pending-icon {
    font-size: 30px;
    animation: ftpPulse 1s infinite;
}

@keyframes ftpPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.ftp-pending-text {
    color: #ffd700;
    font-size: 12px;
    margin: 10px 0;
}

.ftp-pending-countdown {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    font-family: monospace;
}

/* Ações */
.ftp-actions {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: rgba(0,0,0,0.2);
}

.ftp-action-btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.ftp-action-btn.ranking {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border: none;
    color: #000;
}

.ftp-action-btn.ranking:hover {
    transform: scale(1.05);
}

.ftp-action-btn.leave {
    background: transparent;
    border: 1px solid #ff4757;
    color: #ff4757;
}

.ftp-action-btn.leave:hover {
    background: #ff4757;
    color: #fff;
}

/* ===== BLOQUEIO DOS BOTÕES REAIS ===== */
.real-trade-blocker {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 10px;
}

.blocker-message {
    color: #ffd700;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

.blocked-for-tournament {
    pointer-events: none !important;
    opacity: 0.3 !important;
}

/* ===== MODAL DE RANKING ===== */
.ftp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    animation: ftpFadeIn 0.3s ease;
}

@keyframes ftpFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ftp-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #ffd700;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
}

.ftp-modal-header {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ftp-modal-header h3 {
    margin: 0;
    font-size: 16px;
}

.ftp-modal-close {
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.ftp-prizes-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: rgba(0,0,0,0.3);
}

.ftp-prize {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.ftp-prize.gold {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
}

.ftp-prize.silver {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: #000;
}

.ftp-prize.bronze {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: #fff;
}

.ftp-stats-bar {
    text-align: center;
    padding: 10px;
    color: #888;
    font-size: 12px;
    border-bottom: 1px solid rgba(255,215,0,0.2);
}

.ftp-my-position {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 10px;
    margin: 10px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    font-size: 13px;
}

.ftp-my-position strong {
    color: #ffd700;
}

.ftp-modal-body {
    max-height: 350px;
    overflow-y: auto;
    padding: 10px;
}

.ftp-rank-header {
    display: grid;
    grid-template-columns: 50px 1fr 80px 80px;
    padding: 8px 10px;
    color: #888;
    font-size: 11px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ftp-rank-item {
    display: grid;
    grid-template-columns: 50px 1fr 80px 80px;
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    align-items: center;
    font-size: 13px;
}

.ftp-rank-item:hover {
    background: rgba(255,215,0,0.1);
}

.ftp-rank-item.my-row {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid #ffd700;
    border-radius: 5px;
}

.rank-pos {
    font-weight: bold;
}

.rank-name {
    color: #fff;
}

.rank-balance {
    color: #fff;
    font-weight: bold;
    text-align: right;
}

.rank-profit {
    text-align: right;
    font-weight: bold;
}

.rank-profit.profit-positive { color: #00ff88; }
.rank-profit.profit-negative { color: #ff4757; }

.ftp-modal-footer {
    padding: 15px;
    background: rgba(0,0,0,0.2);
}

.ftp-modal-footer button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}

/* ===== NOTIFICAÇÕES ===== */
.ftp-notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 15px 30px;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    z-index: 100001;
    transition: transform 0.5s ease;
    white-space: nowrap;
}

.ftp-notification.show {
    transform: translateX(-50%) translateY(0);
}

.ftp-notification.success {
    background: linear-gradient(135deg, #00b894, #00a885);
}

.ftp-notification.error {
    background: linear-gradient(135deg, #ff4757, #ff3344);
}

.ftp-notification.info {
    background: linear-gradient(135deg, #0984e3, #74b9ff);
}

/* ===== SCROLLBAR ===== */
.ftp-modal-body::-webkit-scrollbar {
    width: 6px;
}

.ftp-modal-body::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.3);
}

.ftp-modal-body::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 3px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .free-tournament-panel {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        top: auto;
        bottom: 80px;
    }
}

/* ===== BOTÕES REAIS BLOQUEADOS (SEM OVERLAY) ===== */
button.pushable.up.blocked-for-tournament,
button.pushable.down.blocked-for-tournament {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
    filter: grayscale(50%);
}

button.pushable.up.blocked-for-tournament:hover,
button.pushable.down.blocked-for-tournament:hover {
    transform: none !important;
}

/* ===== HISTÓRICO DE TRADES ===== */
.ftp-history-header {
    display: grid;
    grid-template-columns: 60px 40px 80px 70px 1fr;
    padding: 8px 10px;
    color: #888;
    font-size: 11px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ftp-history-item {
    display: grid;
    grid-template-columns: 60px 40px 80px 70px 1fr;
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    align-items: center;
    font-size: 12px;
}

.ftp-history-item:hover {
    background: rgba(255,215,0,0.1);
}

.ftp-history-item.win {
    border-left: 3px solid #00ff88;
}

.ftp-history-item.loss {
    border-left: 3px solid #ff4757;
}

.ftp-history-item.pending {
    border-left: 3px solid #ffd700;
}

.ftp-history-time {
    color: #888;
}

.ftp-history-dir {
    font-size: 16px;
}

.ftp-history-asset {
    color: #fff;
    font-size: 11px;
}

.ftp-history-amount {
    color: #aaa;
}

.ftp-history-result {
    text-align: right;
    font-weight: bold;
}

.ftp-history-item.win .ftp-history-result {
    color: #00ff88;
}

.ftp-history-item.loss .ftp-history-result {
    color: #ff4757;
}

.ftp-no-history {
    text-align: center;
    padding: 40px;
    color: #666;
}

/* ===== CAIXA DE ENTRADA DURANTE TRADE ===== */
.ftp-entry-box {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.ftp-entry-box.buy {
    border: 1px solid #00b894;
}

.ftp-entry-box.sell {
    border: 1px solid #ff4757;
}

.ftp-entry-dir {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.ftp-entry-box.buy .ftp-entry-dir {
    color: #00ff88;
}

.ftp-entry-box.sell .ftp-entry-dir {
    color: #ff4757;
}

.ftp-entry-asset {
    color: #ffd700;
    font-size: 12px;
    margin-bottom: 8px;
}

.ftp-entry-price,
.ftp-entry-amount,
.ftp-entry-current {
    color: #aaa;
    font-size: 11px;
    margin: 3px 0;
}

.ftp-entry-price strong,
.ftp-entry-current strong,
.ftp-entry-current span {
    color: #fff;
}

.ftp-entry-status {
    margin-top: 8px;
    font-weight: bold;
    font-size: 12px;
}

.ftp-entry-status.winning {
    color: #00ff88;
}

.ftp-entry-status.losing {
    color: #ff4757;
}

/* ===== AJUSTE DOS BOTÕES DE AÇÃO ===== */
.ftp-actions {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: rgba(0,0,0,0.2);
}

.ftp-action-btn {
    flex: 1;
    padding: 10px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.ftp-action-btn.ranking {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border: none;
    color: #000;
}

.ftp-action-btn.history {
    background: rgba(255,255,255,0.1);
    border: 1px solid #666;
    color: #fff;
}

.ftp-action-btn.history:hover {
    border-color: #ffd700;
    color: #ffd700;
}

.ftp-action-btn.leave {
    background: transparent;
    border: 1px solid #ff4757;
    color: #ff4757;
    flex: 0.5;
}

/* ===== POPUP DE VENCEDOR ===== */
.ftp-winner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.ftp-winner-overlay.show {
    opacity: 1;
}

.ftp-winner-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 3px solid #ffd700;
    box-shadow: 0 0 50px rgba(255,215,0,0.3);
    animation: winnerPulse 2s infinite;
}

@keyframes winnerPulse {
    0%, 100% { box-shadow: 0 0 50px rgba(255,215,0,0.3); }
    50% { box-shadow: 0 0 80px rgba(255,215,0,0.6); }
}

.ftp-winner-confetti {
    font-size: 30px;
    margin-bottom: 15px;
    animation: confettiBounce 1s infinite;
}

@keyframes confettiBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.ftp-winner-medal {
    font-size: 80px;
    margin-bottom: 15px;
    animation: medalSpin 3s infinite;
}

@keyframes medalSpin {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

.ftp-winner-modal h2 {
    color: #ffd700;
    font-size: 32px;
    margin: 0 0 10px 0;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.ftp-winner-modal h3 {
    color: #fff;
    font-size: 20px;
    margin: 0 0 20px 0;
    font-weight: normal;
}

.ftp-winner-details {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.ftp-winner-details p {
    color: #ccc;
    margin: 8px 0;
    font-size: 14px;
}

.ftp-winner-details strong {
    color: #fff;
}

.ftp-winner-prize {
    font-size: 24px !important;
    color: #4ade80 !important;
    margin-top: 15px !important;
}

.ftp-winner-prize strong {
    color: #4ade80 !important;
    font-size: 28px;
}

.ftp-winner-credited {
    color: #4ade80 !important;
    font-weight: bold;
    margin-top: 15px !important;
}

.ftp-winner-btn {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #000;
    border: none;
    padding: 15px 50px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ftp-winner-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255,215,0,0.4);
}

/* ===== BOTÃO MINIMIZAR ===== */
.ftp-minimize-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: auto;
}

.ftp-minimize-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ffd700;
    color: #ffd700;
}

.free-tournament-panel.minimized {
    width: auto !important;
    min-width: 200px;
}

.free-tournament-panel.minimized .ftp-header {
    border-radius: 10px;
}

/* ===== POPUP ELIMINADO / REBUY ===== */
.ftp-eliminated-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 380px;
    width: 90%;
    border: 3px solid #ef4444;
    box-shadow: 0 0 30px rgba(239,68,68,0.3);
}

.ftp-eliminated-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.ftp-eliminated-modal h2 {
    color: #ef4444;
    font-size: 28px;
    margin: 0 0 10px 0;
}

.ftp-eliminated-modal > p {
    color: #ccc;
    margin: 0 0 25px 0;
}

.ftp-rebuy-section {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.ftp-rebuy-section p {
    color: #aaa;
    margin: 0 0 15px 0;
    font-size: 14px;
}

.ftp-rebuy-btn {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.ftp-rebuy-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 20px rgba(74,222,128,0.4);
}

.ftp-rebuy-info {
    color: #4ade80 !important;
    font-size: 12px !important;
    margin: 0 !important;
}

.ftp-rebuy-used {
    color: #ef4444 !important;
    font-weight: bold;
}

.ftp-eliminated-close {
    background: transparent;
    border: 2px solid #666;
    color: #999;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ftp-eliminated-close:hover {
    border-color: #999;
    color: #fff;
}

/* ===== POPUP DE VENCEDOR ===== */
.ftp-winner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.ftp-winner-overlay.show {
    opacity: 1;
}

.ftp-winner-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 3px solid #ffd700;
    box-shadow: 0 0 50px rgba(255,215,0,0.3);
    animation: winnerPulse 2s infinite;
}

@keyframes winnerPulse {
    0%, 100% { box-shadow: 0 0 50px rgba(255,215,0,0.3); }
    50% { box-shadow: 0 0 80px rgba(255,215,0,0.6); }
}

.ftp-winner-confetti {
    font-size: 30px;
    margin-bottom: 15px;
    animation: confettiBounce 1s infinite;
}

@keyframes confettiBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.ftp-winner-medal {
    font-size: 80px;
    margin-bottom: 15px;
    animation: medalSpin 3s infinite;
}

@keyframes medalSpin {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

.ftp-winner-modal h2 {
    color: #ffd700;
    font-size: 32px;
    margin: 0 0 10px 0;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.ftp-winner-modal h3 {
    color: #fff;
    font-size: 20px;
    margin: 0 0 20px 0;
    font-weight: normal;
}

.ftp-winner-details {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.ftp-winner-details p {
    color: #ccc;
    margin: 8px 0;
    font-size: 14px;
}

.ftp-winner-details strong {
    color: #fff;
}

.ftp-winner-prize {
    font-size: 24px !important;
    color: #4ade80 !important;
    margin-top: 15px !important;
}

.ftp-winner-prize strong {
    color: #4ade80 !important;
    font-size: 28px;
}

.ftp-winner-credited {
    color: #4ade80 !important;
    font-weight: bold;
    margin-top: 15px !important;
}

.ftp-winner-btn {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #000;
    border: none;
    padding: 15px 50px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ftp-winner-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255,215,0,0.4);
}
