/* Easy Profit Funnels Thank You Page Styles - Modern Design */

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 40px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 50px;
}

.success-icon {
    display: inline-block;
    margin-bottom: 30px;
}

.success-icon i {
    font-size: 6rem;
    color: #28a745;
    animation: scaleIn 0.6s ease-out;
    filter: drop-shadow(0 10px 30px rgba(40, 167, 69, 0.5));
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.main-headline {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

/* Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.5), transparent);
    margin: 50px 0;
}

/* Message Section */
.message-section {
    margin: 40px 0;
}

.thank-you-box {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
}

.thank-you-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.message-text {
    font-size: 1.2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 35px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 1.7;
}

/* Email Notice */
.email-notice {
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.email-notice i {
    font-size: 3rem;
    color: #ffd700;
    flex-shrink: 0;
}

.email-content p {
    margin: 0 0 10px 0;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.email-content p:last-child {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.email-content strong {
    font-size: 1.2rem;
    color: #ffd700;
}

.closing-text {
    font-size: 1.2rem;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Next Steps Section */
.next-steps {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.next-steps-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 35px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.step-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

/* Copyright */
.copyright {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Scroll to Top */
#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#scroll-top:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Responsive styles */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 40px 30px;
    }
    
    .success-icon i {
        font-size: 5rem;
    }
    
    .main-headline {
        font-size: 2.3rem;
    }
    
    .thank-you-box {
        padding: 30px 25px;
    }
    
    .thank-you-title {
        font-size: 1.8rem;
    }
    
    .message-text {
        font-size: 1.1rem;
    }
    
    .email-notice {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }
    
    .email-notice i {
        font-size: 2.5rem;
    }
    
    .next-steps {
        padding: 30px 25px;
    }
    
    .next-steps-title {
        font-size: 1.5rem;
    }
    
    .step-content h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    body {
        padding: 20px 0;
    }
    
    .content-wrapper {
        padding: 35px 25px;
        border-radius: 15px;
    }
    
    .success-icon i {
        font-size: 4rem;
    }
    
    .main-headline {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }
    
    .thank-you-box {
        padding: 25px 20px;
    }
    
    .thank-you-title {
        font-size: 1.6rem;
    }
    
    .message-text {
        font-size: 1rem;
    }
    
    .email-notice {
        padding: 20px;
    }
    
    .email-content strong {
        font-size: 1.1rem;
    }
    
    .closing-text {
        font-size: 1.1rem;
    }
    
    .next-steps {
        padding: 25px 20px;
    }
    
    .next-steps-title {
        font-size: 1.4rem;
    }
    
    .step-item {
        gap: 15px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
}