/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    min-height: 100vh;
    min-height: 100dvh;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* ==================== HEADER SPOTIFY ==================== */
.spotify-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 0 24px;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-icon {
    width: 32px;
    height: 32px;
    fill: #1DB954;
}

.header-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.header-nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: #b3b3b3;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: #ffffff;
    background: #1DB954;
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-badge {
    background: linear-gradient(135deg, #1DB954, #1ed760);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ==================== BARRA DE PROMOÇÃO ==================== */
.promo-bar {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #1DB954, #169c46, #1DB954);
    background-size: 200% 100%;
    animation: gradient-move 3s ease infinite;
    padding: 10px 20px;
    z-index: 999;
}

@keyframes gradient-move {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
}

.promo-icon {
    font-size: 1.2rem;
}

.promo-text {
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* ==================== MAIN WRAPPER ==================== */
.main-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 140px 16px 100px;
    min-height: 100vh;
}

/* Efeito de fundo animado */
.main-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(29, 185, 84, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(29, 185, 84, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(29, 185, 84, 0.05) 0%, transparent 70%);
    animation: backgroundPulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

.main-wrapper::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(29, 185, 84, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(29, 185, 84, 0.08) 0%, transparent 40%);
    animation: backgroundPulse 12s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: -1;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* ==================== FOOTER ==================== */
.spotify-footer {
    background: rgba(18, 18, 18, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1DB954;
}

.footer-links .divider {
    color: #535353;
}

.footer-copy {
    color: #535353;
    font-size: 0.8rem;
}

/* ==================== CONTAINER ==================== */
.container {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
}

/* Telas */
.screen {
    display: none;
    animation: fadeIn 0.5s ease;
}

.screen.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== TELA INICIAL ==================== */
#start-screen {
    text-align: center;
    padding: 32px 20px;
    background: rgba(18, 18, 18, 0.95);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 60px rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo {
    margin-bottom: 20px;
}

.spotify-icon {
    width: 70px;
    height: 70px;
    fill: #1DB954;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 25px rgba(29, 185, 84, 0.5));
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(29, 185, 84, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(29, 185, 84, 0.7));
    }
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1DB954;
    text-shadow: 0 0 30px rgba(29, 185, 84, 0.4);
}

/* Feature Badges */
.feature-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(29, 185, 84, 0.15);
    border: 1px solid rgba(29, 185, 84, 0.3);
    color: #1DB954;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.subtitle {
    font-size: 1rem;
    color: #b3b3b3;
    margin-bottom: 12px;
}

.description {
    font-size: 0.9rem;
    color: #727272;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Prize Preview */
.prize-preview {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.prize-item {
    background: rgba(40, 40, 40, 0.6);
    padding: 10px 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #333;
}

.prize-icon {
    font-size: 1.2rem;
}

.prize-text {
    font-size: 0.8rem;
    color: #b3b3b3;
    font-weight: 500;
}

/* Botão Primary melhorado */
.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    color: #000000;
    border: none;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(29, 185, 84, 0.4);
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 30px rgba(29, 185, 84, 0.6);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-icon {
    font-size: 0.9rem;
}

/* Disclaimer */
.disclaimer {
    margin-top: 16px;
    font-size: 0.75rem;
    color: #535353;
}

.disclaimer a {
    color: #1DB954;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

/* ==================== RESULTADO ==================== */
.result-content {
    text-align: center;
    padding: 32px 20px;
    background: rgba(18, 18, 18, 0.95);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 60px rgba(29, 185, 84, 0.15);
    border: 1px solid rgba(29, 185, 84, 0.3);
}

.result-content h2 {
    font-size: 1.8rem;
    color: #1DB954;
    margin-bottom: 8px;
}

.result-subtitle {
    color: #b3b3b3;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.withdraw-info {
    background: rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.2);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 20px;
}

.withdraw-info p {
    color: #1DB954;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ==================== RESPONSIVO HEADER ==================== */
@media (max-width: 768px) {
    .header-content {
        padding: 0 12px;
    }

    .header-nav {
        display: none;
    }

    .header-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .promo-text {
        font-size: 0.8rem;
    }

    .main-wrapper {
        padding: 130px 12px 80px;
    }
}

@media (max-width: 480px) {
    .spotify-header {
        padding: 0 12px;
    }

    .header-content {
        height: 56px;
    }

    .header-icon {
        width: 28px;
        height: 28px;
    }

    .header-title {
        font-size: 1.2rem;
    }

    .promo-bar {
        top: 56px;
        padding: 8px 12px;
    }

    .promo-icon {
        display: none;
    }

    .main-wrapper {
        padding: 120px 12px 70px;
    }

    .feature-badges {
        gap: 8px;
    }

    .badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .prize-preview {
        flex-direction: column;
        align-items: center;
    }

    .prize-item {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        gap: 8px;
    }

    .footer-links a {
        font-size: 0.75rem;
    }
}

.description {
    font-size: 0.9rem;
    color: #808080;
    margin-bottom: 32px;
    line-height: 1.5;
    padding: 0 10px;
}

/* Botões */
.btn-primary {
    background: #1DB954;
    color: #000000;
    border: none;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(29, 185, 84, 0.3);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary:hover {
    background: #1ed760;
    transform: scale(1.03);
    box-shadow: 0 6px 30px rgba(29, 185, 84, 0.5);
}

.btn-primary:active {
    transform: scale(0.97);
    box-shadow: 0 2px 15px rgba(29, 185, 84, 0.4);
}

/* Botão Secundário */
.btn-secondary {
    background: transparent;
    color: #b3b3b3;
    border: 2px solid #404040;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    width: 100%;
}

.btn-secondary:hover {
    border-color: #1DB954;
    color: #1DB954;
    background: rgba(29, 185, 84, 0.1);
}

.btn-secondary:active {
    transform: scale(0.97);
}

/* Tela do Quiz */
#quiz-screen {
    background: rgba(18, 18, 18, 0.95);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 60px rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.quiz-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.progress-info {
    width: 100%;
}

#question-number {
    font-size: 0.85rem;
    color: #b3b3b3;
    margin-bottom: 8px;
    display: block;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: #333333;
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #1DB954, #1ed760);
    border-radius: 3px;
    transition: width 0.5s ease;
    width: 10%;
    box-shadow: 0 0 10px rgba(29, 185, 84, 0.5);
}

.prize-display {
    text-align: center;
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.15) 0%, rgba(29, 185, 84, 0.05) 100%);
    padding: 12px 20px;
    border-radius: 16px;
    border: 1px solid rgba(29, 185, 84, 0.3);
    box-shadow: 0 0 25px rgba(29, 185, 84, 0.15);
}

.prize-label {
    display: block;
    font-size: 0.7rem;
    color: #b3b3b3;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.prize-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1DB954;
    text-shadow: 0 0 15px rgba(29, 185, 84, 0.6);
}

/* Container da Pergunta */
.question-container {
    margin-bottom: 20px;
}

.question-prize {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(29, 185, 84, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-size: 0.8rem;
    color: #b3b3b3;
}

.question-prize .value {
    color: #1DB954;
    font-weight: 600;
}

#question-text {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Opções */
.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option {
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid #333333;
    padding: 14px 16px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    text-align: left;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.option:hover:not(.disabled) {
    border-color: #1DB954;
    background: rgba(29, 185, 84, 0.1);
    transform: translateX(4px);
}

.option:active:not(.disabled) {
    transform: scale(0.98);
}

.option .option-letter {
    background: #333333;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.option:hover:not(.disabled) .option-letter {
    background: #1DB954;
    color: #000000;
}

.option .option-text {
    flex: 1;
    line-height: 1.3;
}

.option.correct {
    border-color: #1DB954;
    background: rgba(29, 185, 84, 0.2);
    animation: correctPulse 0.5s ease;
}

@keyframes correctPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.option.correct .option-letter {
    background: #1DB954;
    color: #000000;
}

.option.wrong {
    border-color: #e91429;
    background: rgba(233, 20, 41, 0.2);
}

.option.wrong .option-letter {
    background: #e91429;
    color: #ffffff;
}

.option.disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* Feedback */
.feedback {
    margin: 16px 0;
    padding: 12px 16px;
    border-radius: 14px;
    text-align: center;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback.correct {
    background: rgba(29, 185, 84, 0.2);
    border: 1px solid rgba(29, 185, 84, 0.4);
}

.feedback.wrong {
    background: rgba(233, 20, 41, 0.2);
    border: 1px solid rgba(233, 20, 41, 0.4);
}

.feedback-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

#feedback-icon {
    font-size: 1.2rem;
}

.hidden {
    display: none !important;
}

#next-btn {
    width: 100%;
    margin-top: 8px;
}

/* Tela de Resultado */
#result-screen {
    text-align: center;
}

.result-content {
    background: rgba(18, 18, 18, 0.95);
    border-radius: 24px;
    padding: 32px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 60px rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#result-title {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: #1DB954;
    line-height: 1.3;
}

.final-prize {
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.15) 0%, rgba(29, 185, 84, 0.05) 100%);
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 24px;
    border: 2px solid rgba(29, 185, 84, 0.4);
    box-shadow: 0 0 40px rgba(29, 185, 84, 0.2);
}

.final-prize .label {
    display: block;
    font-size: 0.9rem;
    color: #b3b3b3;
    margin-bottom: 8px;
}

.final-prize .value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1DB954;
    text-shadow: 0 0 25px rgba(29, 185, 84, 0.6);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 28px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 0.8rem;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#restart-btn {
    padding: 14px 50px;
}

/* Responsivo - Mobile First */
@media (max-width: 480px) {
    body {
        padding: 12px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .container {
        max-width: 100%;
    }

    #start-screen {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .logo h1 {
        font-size: 1.7rem;
    }

    .spotify-icon {
        width: 60px;
        height: 60px;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .description {
        font-size: 0.85rem;
        padding: 0;
        margin-bottom: 24px;
    }

    .btn-primary {
        padding: 12px 32px;
        font-size: 0.9rem;
        width: 100%;
    }

    #quiz-screen {
        padding: 16px;
        border-radius: 20px;
    }

    #question-text {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .option {
        padding: 12px 14px;
        font-size: 0.9rem;
        border-radius: 12px;
    }

    .option .option-letter {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.8rem;
    }

    .prize-display {
        padding: 10px 16px;
    }

    .prize-value {
        font-size: 1.2rem;
    }

    .question-prize {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .feedback {
        padding: 10px 14px;
    }

    .feedback-content {
        font-size: 0.85rem;
    }

    .result-content {
        padding: 24px 16px;
        border-radius: 20px;
    }

    #result-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .final-prize {
        padding: 20px;
    }

    .final-prize .value {
        font-size: 2rem;
    }

    .stats {
        gap: 30px;
        margin-bottom: 24px;
    }

    .stat-value {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    #restart-btn {
        width: 100%;
        padding: 12px 32px;
    }
}

/* Telas muito pequenas */
@media (max-width: 360px) {
    body {
        padding: 8px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    #question-text {
        font-size: 0.95rem;
    }

    .option {
        padding: 10px 12px;
        font-size: 0.85rem;
        gap: 10px;
    }

    .final-prize .value {
        font-size: 1.8rem;
    }
}

/* Safe area para iPhones com notch */
@supports (padding: max(0px)) {
    body {
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }
}

/* Animação de pulso para o prêmio */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.prize-value.animate {
    animation: pulse 0.5s ease;
}

/* Efeito de celebração */
.celebration {
    position: relative;
    overflow: hidden;
}

.celebration::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(29, 185, 84, 0.08) 25%, 
        transparent 50%, 
        rgba(29, 185, 84, 0.08) 75%, 
        transparent 100%);
    animation: shimmer 2s infinite linear;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-50%) rotate(45deg);
    }
    100% {
        transform: translateX(50%) rotate(45deg);
    }
}

/* Glow effect nos cards */
@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 60px rgba(29, 185, 84, 0.1);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 80px rgba(29, 185, 84, 0.2);
    }
}

#start-screen, #quiz-screen, .result-content {
    animation: cardGlow 4s ease-in-out infinite;
}

/* Desabilitar seleção de texto em botões */
button, .option {
    user-select: none;
    -webkit-user-select: none;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Melhorar performance em mobile */
.container, .screen, .option {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* ==================== NOTIFICAÇÕES DE SAQUES ==================== */
.notificacao-saque {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.98) 0%, rgba(30, 30, 30, 0.98) 100%);
    border: 1px solid rgba(29, 185, 84, 0.4);
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(29, 185, 84, 0.15);
    z-index: 10000;
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 320px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.notificacao-saque.mostrar {
    transform: translateX(0);
    opacity: 1;
}

.notificacao-icone {
    font-size: 1.8rem;
    animation: bounce-icon 1s ease infinite;
}

@keyframes bounce-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.notificacao-texto {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notificacao-texto strong {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
}

.notificacao-valor {
    color: #1DB954;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(29, 185, 84, 0.5);
}

/* Responsivo para mobile */
@media (max-width: 480px) {
    .notificacao-saque {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
        padding: 12px 16px;
    }
    
    .notificacao-icone {
        font-size: 1.5rem;
    }
    
    .notificacao-texto strong {
        font-size: 0.85rem;
    }
    
    .notificacao-valor {
        font-size: 1rem;
    }
}
