:root {
    --primary-orange: #ff7a00;
    --primary-orange-hover: #e06c00;
    --bg-dark-purple: #23183d;
    --card-purple: #3b2759;
    --bg-light: #f9fafb;
    --text-main: #1f2937;
    --text-muted: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Header */
.header {
    width: 100%;
    background-color: var(--bg-dark-purple);
    color: white;
    padding: 12px 0;
    display: flex;
    justify-content: center;
}

.header-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 24px;
    object-fit: contain;
}

.badge-25 {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-25 .dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-orange);
    border-radius: 50%;
}

.recharge-code-box {
    background-color: #ffedd5;
    border: 1px dashed #f97316;
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 16px 24px 12px 24px;
}

.recharge-code-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #f97316;
}

.badge-valid {
    background-color: #d1fae5;
    color: #059669;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
}

.recharge-code {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1e293b;
    letter-spacing: 4px;
    font-family: 'Space Mono', monospace, 'Montserrat', sans-serif;
}

.scratch-area {
    display: none;
}

.scratch-pattern {
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.2) 0px,
        rgba(255,255,255,0.2) 10px,
        rgba(255,255,255,0.4) 10px,
        rgba(255,255,255,0.4) 20px
    );
}

.card-back-footer {
    display: flex;
    justify-content: space-between;
    padding: 4px 16px 10px 16px;
    background-color: white;
    border-radius: 0 0 16px 16px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: #9ca3af;
    text-transform: uppercase;
}

.footer-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: #4b5563;
    font-family: 'Space Mono', monospace, sans-serif;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--primary-orange);
    background-image: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
    background-size: 20px 20px;
    border-radius: 8px;
    width: 0%;
    transition: width 0.5s ease-out;
    animation: progress-stripes 1s linear infinite;
}

@keyframes progress-stripes {
    from {
        background-position: 20px 0;
    }
    to {
        background-position: 0 0;
    }
}

/* Main Content */
.main-content {
    width: 100%;
    max-width: 600px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

/* Prize Card */
.prize-card {
    background: linear-gradient(135deg, #4c2f78, #3b2759);
    width: 100%;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 25px rgba(59, 39, 89, 0.3);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.prize-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 200%; }
    100% { left: 200%; }
}

.prize-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.prize-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.prize-title .currency {
    font-size: 1.5rem;
    margin-left: 4px;
}

.prize-desc {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #2c1a4d;
    margin-bottom: 16px;
    font-style: italic;
    text-align: center;
}

/* Image Gallery */
.image-gallery {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.image-gallery img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 2px solid white;
}

.description {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Info Cards */
.info-cards {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-bottom: 24px;
}

.info-card {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.info-card .icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.info-card-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.info-card-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* CTA Button */
.cta-button {
    width: 100%;
    background-color: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
    transition: all 0.2s ease;
    margin-bottom: 12px;
}

.cta-button:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.5);
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #10b981; /* Tailwind emerald-500 */
    font-weight: 600;
    margin-bottom: 32px;
}

/* Testimonials */
.testimonials-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #2c1a4d;
    font-style: italic;
    margin-bottom: 8px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.rating i {
    color: #f59e0b; /* yellow */
}

.testimonial-card {
    width: 100%;
    background: white;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.testimonial-name .verified {
    color: #10b981;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Ticker */
.ticker-wrapper {
    width: 100%;
    background-color: var(--primary-orange);
    color: white;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.ticker {
    display: inline-flex;
    gap: 40px;
    animation: ticker 25s linear infinite;
    font-size: 0.75rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 1px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer */
.footer {
    width: 100%;
    padding: 32px 20px;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.footer-logo img {
    height: 24px;
    object-fit: contain;
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Register Page Styles */
.register-header-card {
    background: linear-gradient(135deg, #4c2f78, #3b2759);
    width: 100%;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 25px rgba(59, 39, 89, 0.3);
    margin-bottom: 24px;
}

.register-header-card .prize-title {
    font-size: 2.2rem;
    font-style: italic;
    margin-bottom: 12px;
}

.form-card {
    width: 100%;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-orange);
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-security {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 20px;
}

.form-security i {
    color: #10b981;
    font-size: 1rem;
    margin-top: 2px;
}

.form-security strong {
    color: var(--text-main);
}

.cta-button.disabled {
    background-color: #f3f4f6;
    color: #9ca3af;
    box-shadow: none;
    cursor: not-allowed;
}

.cta-button.disabled:hover {
    transform: none;
    background-color: #f3f4f6;
}

/* Jogo / Rondas Page Styles */
.accumulated-card-v2 {
    background: linear-gradient(180deg, #4c2f78, #2a164b);
    width: 100%;
    border-radius: 16px;
    padding: 14px 16px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 20px rgba(59, 39, 89, 0.3);
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ronda-badge {
    font-size: 0.65rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.dot-green {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
}

.ronda-title {
    font-size: 1.2rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.ronda-title span {
    color: var(--primary-orange);
}

.accumulated-inner-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 10px;
}

.accumulated-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.accumulated-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    font-style: italic;
}

.accumulated-title .currency {
    font-size: 1.2rem;
    color: var(--primary-orange);
}

.accumulated-user {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Progress Section */
.progress-section {
    width: 100%;
    margin-bottom: 24px;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 800;
    color: #4b5563;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.progress-percent {
    color: var(--primary-orange);
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

/* (progress-bar-fill is defined at the top now) */

/* Recharge Card 3D Flip */
.recharge-card-container {
    background-color: transparent;
    width: 100%;
    height: 210px;
    perspective: 2000px;
    margin-bottom: 16px;
}

@keyframes floatCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.flip-card {
    width: 100%;
    height: 100%;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card-inner.flipped {
    transform: rotateY(180deg);
}

.flip-card-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background-color: white;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 2;
}

.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background-color: white;
    display: flex;
    flex-direction: column;
    overflow: visible;
    transform: rotateY(180deg);
}

/* Front Card New Styles */
.front-orange {
    background-color: var(--primary-orange);
    color: white;
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: floatCard 4s ease-in-out infinite;
}

.front-orange .decor {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 2rem;
}
.decor-1 { top: 20px; left: 20px; font-size: 2.5rem; }
.decor-2 { top: 40px; left: 80px; transform: rotate(15deg); }
.decor-3 { bottom: 60px; left: 20px; }
.decor-4 { bottom: 30px; right: 50px; font-size: 3rem; }

.front-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #9a4200;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.front-badge .dot {
    width: 6px;
    height: 6px;
    background-color: #fca5a5;
    border-radius: 50%;
}

#countdownTimer {
    font-size: 1.1rem;
    font-weight: 900;
    font-style: italic;
    font-family: 'Montserrat', sans-serif;
    margin-left: 2px;
}

.front-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.front-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.front-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.front-title span {
    font-size: 1.5rem;
}

.front-desc {
    font-size: 1.1rem;
    font-weight: 700;
}

.modelo-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.front-footer {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.recharge-header {
    background-color: #0b112c;
    color: white;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 16px 16px 0 0;
}

.recharge-brand {
    background-color: white;
    color: var(--primary-orange);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

.recharge-body {
    padding: 10px 16px 6px 16px;
}

.recharge-code-box {
    background-color: #ffedd5;
    border: 2px dashed #fdb97b;
    border-radius: 12px;
    padding: 10px 16px;
    margin-bottom: 8px;
}

.recharge-code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 6px;
}

.badge-valid {
    background-color: #d1fae5;
    color: #059669;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
}

.recharge-code {
    font-family: 'Space Mono', monospace, 'Inter', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 4px;
    color: #111827;
}

.recharge-details {
    display: flex;
    justify-content: space-between;
}

.detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.6rem;
    color: #9ca3af;
    font-weight: 700;
}

.detail-value {
    font-size: 0.65rem;
    color: #4b5563;
    font-weight: 600;
    font-family: monospace;
}

.flip-hint {
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.2s;
    margin-top: 6px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.flip-hint:hover {
    background-color: rgba(0,0,0,0.02);
}

/* Success Overlay */
.success-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(140, 130, 150, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

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

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

@keyframes popIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.success-icon {
    width: 90px;
    height: 90px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 0 0 10px rgba(255, 122, 0, 0.3);
    margin-bottom: -20px;
    position: relative;
    z-index: 2;
}

.success-box {
    background: white;
    padding: 36px 40px 20px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 250px;
}

.success-label {
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.success-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    font-style: italic;
    color: #2c1a4d;
}

.success-amount .currency {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.confetti-container {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 1px; height: 1px;
    pointer-events: none;
    z-index: 10000;
}

.confetti-particle {
    position: absolute;
    width: 10px; height: 10px;
    animation: confettiBurst 1s ease-out forwards;
}

@keyframes confettiBurst {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) rotate(var(--rot)); opacity: 0; }
}

/* Options Grid */
.options-section {
    width: 100%;
    margin-bottom: 32px;
}

.options-title {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    white-space: normal;
    word-break: break-word;
    padding: 0 4px;
}

.options-title .dots {
    color: #fca5a5;
    font-weight: normal;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.option-btn {
    background-color: white;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 10px;
    font-family: 'Space Mono', monospace, 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: center;
    width: 100%;
}

.option-btn:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.1);
}

/* Levantar / Withdrawal Page Styles */
.confirmed-card {
    background: linear-gradient(180deg, #4c2f78, #2a164b);
    width: 100%;
    border-radius: 20px;
    padding: 30px 20px 24px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 25px rgba(59, 39, 89, 0.3);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.confirmed-icon {
    width: 55px;
    height: 55px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    padding: 2px;
}

.confirmed-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.confirmed-subtitle {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.confirmed-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    font-style: italic;
    margin-bottom: 8px;
}

.confirmed-title .currency {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-left: 4px;
}

.confirmed-desc {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.withdraw-card {
    background: white;
    width: 100%;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.method-toggle {
    display: flex;
    background-color: #f3f4f6;
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 24px;
}

.method-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.method-btn.active {
    background-color: white;
    color: #1f2937;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.method-icon {
    width: 22px;
    height: 22px;
    background-color: var(--primary-orange);
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.method-icon-iban {
    width: 22px;
    height: 22px;
    background-color: #1f2937;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.info-box {
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: #475569;
    margin-bottom: 24px;
}

.info-box i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 122, 0, 0.2);
    border-top: 4px solid var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
}

/* Final Page */
.final-header-card {
    background: linear-gradient(180deg, #4c2f78, #2a164b);
    width: 100%;
    border-radius: 14px;
    padding: 12px 16px;
    text-align: center;
    color: white;
    margin-bottom: 16px;
}

.final-check-icon {
    width: 36px;
    height: 36px;
    background-color: #10b981;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    margin: 0 auto 10px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.final-subtitle {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3px;
    text-transform: uppercase;
}

.final-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 5px;
}

.final-desc {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.9);
}

.video-section {
    margin-bottom: 24px;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #6b7280;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.section-label .live {
    color: #ef4444;
}

.video-container {
    background-color: #1f2937;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin-bottom: 12px;
}
.video-container vturb-smartplayer { display: block; width: 100%; }

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 122, 0, 0.9);
    padding: 16px 24px;
    border-radius: 8px;
    text-align: center;
    color: white;
    cursor: pointer;
}

.video-overlay i {
    font-size: 2rem;
    margin: 8px 0;
}

.video-overlay span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
}

.video-footer {
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.summary-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.summary-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #e5e7eb;
    padding-bottom: 12px;
}

.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-label {
    font-size: 0.85rem;
    color: #6b7280;
}

.summary-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1f2937;
    text-align: right;
}

.secure-footer {
    text-align: center;
    font-size: 0.75rem;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ============================================
   RESPONSIVIDADE MOBILE - PÁGINA FINAL
   ============================================ */

@media (max-width: 480px) {
    /* Aumentar o header para mobile */
    .final-header-card {
        padding: 18px 14px;
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .final-subtitle {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 6px;
    }

    .final-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .final-desc {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Vídeo maior e sem margens laterais */
    .main-content {
        padding: 16px 12px;
    }

    .video-section {
        width: calc(100% + 24px);
        margin-left: -12px;
        margin-right: -12px;
        margin-bottom: 20px;
    }

    .section-label {
        padding: 0 12px;
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .video-container {
        border-radius: 12px;
        margin-bottom: 10px;
    }


    .video-footer {
        padding: 0 12px;
        font-size: 0.8rem;
    }

    /* Bloco de resumo maior e mais legível */
    .summary-card {
        padding: 24px 20px;
        margin-bottom: 20px;
        width: calc(100% + 24px);
        margin-left: -12px;
        margin-right: -12px;
        border-radius: 16px;
    }

    .summary-list {
        gap: 18px;
    }

    .summary-item {
        padding-bottom: 14px;
    }

    .summary-label {
        font-size: 1rem;
        font-weight: 500;
    }

    .summary-value {
        font-size: 1rem;
        font-weight: 700;
        max-width: 55%;
        word-break: break-word;
    }

    /* Footer de segurança */
    .secure-footer {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    /* Ticker */
    .ticker {
        font-size: 0.8rem;
    }
}

@media (max-width: 380px) {
    .final-title {
        font-size: 1.4rem;
    }

    .video-container {
    }

    .summary-label,
    .summary-value {
        font-size: 0.9rem;
    }
}
