/* Estilos Globais */
:root {
    --blue: #3b82f6;
    --red: #ef4444;
    --orange: #f97316;
    --green: #10b981;
    --gray: #6b7280;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: #333;
}

.navbar-brand img {
    max-height: 40px;
}

/* Estilos da Página de Previsão */
.prediction-wrapper {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.progress-container {
    margin-bottom: 20px;
}

.progress-bar-no {
    background-color: var(--blue);
}

.progress-bar-yes {
    background-color: var(--red);
}

.prediction-question {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.bet-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-no {
    background-color: var(--blue);
    color: white;
    border-radius: 30px;
    padding: 12px 0;
    flex: 1;
    font-weight: bold;
    font-size: 18px;
}

.btn-yes {
    background-color: var(--red);
    color: white;
    border-radius: 30px;
    padding: 12px 0;
    flex: 1;
    font-weight: bold;
    font-size: 18px;
}

.betting-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.betting-panel.show {
    transform: translateY(0);
}

.bet-amount-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.bet-amount-option {
    flex: 1 0 calc(50% - 10px);
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
}

.bet-amount-option.selected {
    background-color: #f0f9ff;
    border-color: var(--blue);
}

.btn-place-bet {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
}

.btn-place-bet-yes {
    background-color: var(--red);
    color: white;
}

.btn-place-bet-no {
    background-color: var(--blue);
    color: white;
}

.potential-win {
    text-align: center;
    margin-bottom: 20px;
}

.win-amount {
    color: var(--orange);
    font-weight: bold;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-height: 40px;
}

.btn-register {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    border-radius: 20px;
    padding: 5px 15px;
}

/* Estilos do Painel de Pagamento */
.payment-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.qrcode-container {
    text-align: center;
    margin: 30px 0;
}

.qrcode {
    max-width: 250px;
    margin: 0 auto;
}

.pix-copy {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    position: relative;
}

.copy-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    color: var(--blue);
    cursor: pointer;
}

.timer {
    text-align: center;
    font-size: 24px;
    margin: 20px 0;
}

.payment-details {
    margin-top: 30px;
    background-color: #f0f9ff;
    padding: 20px;
    border-radius: 10px;
}

.payment-success {
    text-align: center;
    color: var(--green);
    margin: 30px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .prediction-question {
        font-size: 20px;
    }
    
    .bet-buttons {
        margin-bottom: 30px;
    }
}