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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #FF0000;
}

.logo i {
    margin-right: 10px;
    font-size: 28px;
}

.btn-primary {
    background: #FF0000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #CC0000;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF0000 0%, #FF4444 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: #FF0000;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: left;
}

.stat-number, .stat-prefix {
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    color: #FFE135;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 500px;
    background: #333;
    border-radius: 30px;
    padding: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.phone-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.youtube-icon {
    font-size: 4rem;
    color: #FF0000;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.pix-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.money-animation {
    font-size: 2rem;
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(-10px) rotate(-5deg); }
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: #f8f9fa;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF0000, #FF4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF0000, #FF4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.benefit p {
    color: #666;
    line-height: 1.6;
}

/* Dashboard Preview */
.dashboard-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.dashboard-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.dashboard-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #FF0000;
    font-weight: bold;
    margin-bottom: 40px;
}

.dashboard-mockup {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.dashboard-header h3 {
    font-size: 1.5rem;
    color: #333;
}

.total-earning {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF0000;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.channel-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.channel-card:hover {
    border-color: #FF0000;
    transform: translateY(-5px);
}

.channel-thumb {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF0000, #FF4444);
    border-radius: 50%;
    margin: 0 auto 15px;
}

.channel-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #333;
}

.channel-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.channel-earning {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FF0000;
    margin-bottom: 15px;
}

.btn-follow {
    background: #FF0000;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-follow:hover {
    background: #CC0000;
}

.more-channels {
    background: linear-gradient(135deg, #FF0000, #FF4444);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.more-indicator {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.remaining-value {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid #FF0000;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.author strong {
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.author span {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #333;
}

.faq-question i {
    color: #FF0000;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF0000 0%, #FF4444 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-logo i {
    margin-right: 10px;
    color: #FF0000;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF0000;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .phone-mockup {
        width: 220px;
        height: 400px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .channels-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .dashboard-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn-cta {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat {
        text-align: center;
    }

    .phone-mockup {
        width: 180px;
        height: 320px;
    }

    .youtube-icon {
        font-size: 3rem;
    }

    .pix-icon {
        font-size: 2rem;
    }

    .money-animation {
        font-size: 1.5rem;
    }

    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        font-size: 20px;
    }

    .how-it-works h2,
    .benefits h2,
    .dashboard-preview h2,
    .testimonials h2,
    .faq h2,
    .final-cta h2 {
        font-size: 2rem;
    }

    .dashboard-mockup {
        padding: 20px;
    }

    .channels-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .channel-card {
        padding: 15px;
    }

    .channel-thumb {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .footer-links {
        gap: 15px;
        font-size: 0.9rem;
    }
}

/* Formulário de Cadastro */
.signup-form {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF0000, #FF4444);
    color: white;
}

.signup-form h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.signup-form p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF0000;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    padding: 10px;
}

.btn-submit {
    width: 100%;
    background: #FF0000;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-submit:hover {
    background: #CC0000;
    transform: translateY(-2px);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.form-disclaimer a {
    color: #FF0000;
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

/* Dashboard Styles */
.dashboard-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: static;
}

.dashboard-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.welcome {
    font-size: 1.1rem;
    color: #333;
}

.balance {
    background: linear-gradient(135deg, #FF0000, #FF4444);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
}

.dashboard-main {
    padding: 40px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF0000, #FF4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-info h3 {
    font-size: 2rem;
    margin: 0;
    color: #333;
    font-weight: bold;
}

.stat-info p {
    margin: 5px 0 0;
    color: #666;
    font-size: 0.9rem;
}

.channels-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.channels-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.channel-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.channel-item:hover {
    transform: translateY(-5px);
    border-color: #FF0000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.channel-thumbnail {
    text-align: center;
    margin-bottom: 20px;
}

.channel-thumbnail img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.channel-details {
    text-align: center;
    margin-bottom: 20px;
}

.channel-details h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #333;
}

.channel-details p {
    color: #666;
    margin-bottom: 10px;
}

.channel-category {
    background: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

.channel-earning {
    text-align: center;
    margin-bottom: 20px;
}

.earning-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF0000;
}

.btn-subscribe {
    width: 100%;
    background: #FF0000;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-subscribe:hover {
    background: #CC0000;
    transform: translateY(-2px);
}

.btn-subscribe.subscribed {
    background: #28a745;
    cursor: default;
}

.btn-subscribe:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.remaining-channels {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #FF0000, #FF4444);
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 15px;
}

.remaining-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.remaining-value {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 15px;
}

.unlocked-channels {
    padding: 30px;
}

.btn-show-more {
    background: white;
    color: #FF0000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-show-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.withdrawal-section {
    display: flex;
    justify-content: center;
}

.withdrawal-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.withdrawal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.withdrawal-card p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #666;
}

.btn-withdraw {
    background: #28a745;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 15px;
}

.btn-withdraw:hover:not(:disabled) {
    background: #218838;
    transform: translateY(-2px);
}

.btn-withdraw:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.withdrawal-card small {
    color: #666;
    font-size: 0.9rem;
}

/* Success Notification */
.success-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10000;
    text-align: center;
}

.notification-content i {
    color: #28a745;
    font-size: 3rem;
    margin-bottom: 15px;
}

.notification-content h4 {
    color: #333;
    margin-bottom: 10px;
}

.notification-content p {
    color: #666;
    font-size: 1.1rem;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .user-info {
        align-items: center;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .channels-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .channel-item {
        padding: 20px;
    }

    .channels-section {
        padding: 25px;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Withdraw Button Section */
.withdraw-button-section {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.btn-withdraw-main {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-withdraw-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

.btn-withdraw-main i {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .withdraw-button-section {
        margin: 20px 0;
    }
    
    .btn-withdraw-main {
        width: 100%;
        max-width: 300px;
        padding: 15px 30px;
        font-size: 1.2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Counter animation */
.counting {
    opacity: 1;
}

/* Floating money animation */
@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-200px) scale(0.5);
        opacity: 0;
    }
}

/* Success Modal Styles */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.success-modal {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.5s ease;
}

.success-modal-content .success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.success-modal-content h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.success-modal-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.loading-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin: 20px 0;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #FF0000, #FF4444);
    border-radius: 3px;
    animation: loadingProgress 3s linear;
}

.redirect-text {
    font-size: 0.9rem;
    color: #666;
    margin: 10px 0 0 0;
}

.withdrawal-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.detail-item .label {
    font-weight: bold;
    color: #333;
}

.detail-item .value {
    color: #FF0000;
    font-weight: bold;
    font-size: 1.1rem;
}

.arrival-text {
    color: #28a745;
    font-weight: bold;
    background: #d4edda;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.btn-close-modal {
    background: #FF0000;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-close-modal:hover {
    background: #CC0000;
    transform: translateY(-2px);
}

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

@keyframes modalSlideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes loadingProgress {
    from { width: 0%; }
    to { width: 100%; }
}

/* Demo Success Modal Styles */
.demo-success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.demo-success-modal {
    background: white;
    border-radius: 25px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.demo-success-content {
    position: relative;
    z-index: 2;
}

.demo-success-animation {
    position: relative;
    margin-bottom: 30px;
}

.success-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 3rem;
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.confetti {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.confetti::before,
.confetti::after {
    content: '🎉';
    position: absolute;
    font-size: 2rem;
    animation: confettiFall 2s ease-out infinite;
}

.confetti::before {
    left: 20%;
    animation-delay: 0.2s;
}

.confetti::after {
    right: 20%;
    animation-delay: 0.5s;
}

.demo-success-content h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-weight: bold;
}

.earning-text {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 15px;
}

.earning-value {
    color: #FF0000;
    font-weight: bold;
    font-size: 1.5rem;
}

.demo-notice {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #ffeaa7;
    border-radius: 15px;
    padding: 15px;
    margin: 20px 0;
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.4;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-close-demo {
    flex: 1;
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-close-demo:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-signup-demo {
    flex: 2;
    background: linear-gradient(135deg, #FF0000, #FF4444);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.btn-signup-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes confettiFall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(200px) rotate(360deg);
        opacity: 0;
    }
}

/* Mobile responsive for demo modal */
@media (max-width: 480px) {
    .demo-success-modal {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .success-circle {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .demo-success-content h2 {
        font-size: 1.8rem;
    }
    
    .earning-text {
        font-size: 1.1rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .btn-close-demo,
    .btn-signup-demo {
        flex: none;
        width: 100%;
    }
}