/* Guide Popup Styling - Modern Design */
.popup_module.guide {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 30px;
    max-width: 600px;
    width: 90%;
    position: relative;
    overflow: hidden;
    animation: slideIn 0.4s ease-out;
}

/* Add subtle pattern overlay */
.popup_module.guide::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="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* Content styling */
.popup_module.guide .text {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.popup_module.guide .text p {
    margin-bottom: 15px;
    font-size: 14px;
}

.popup_module.guide .text strong {
    color: var(--yellow-color);
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}

/* List styling */
.popup_module.guide .text ul {
    margin: 10px 0 20px 10px;
    padding: 0;
    font-size: 14px;
}

.popup_module.guide .text li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    list-style: none;
}

.popup_module.guide .text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Highlight text styling */
.popup_module.guide .highlight {
}

/* Responsive design */
@media (max-width: 768px) {
    .popup_module.guide {
        padding: 25px 20px;
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .popup_module.guide h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .popup_module.guide .text {
        font-size: 15px;
    }
    
    .popup_module.guide .text strong {
        font-size: 16px;
    }
    
    .popup_module.guide .close {
        top: 10px;
        right: 15px;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .popup_module.guide {
        padding: 20px 15px;
        margin: 15px;
        width: calc(100% - 30px);
    }
    
    .popup_module.guide h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .popup_module.guide .text {
        font-size: 14px;
    }
    
    .popup_module.guide .text li {
        padding-left: 20px;
        margin-bottom: 10px;
    }
    
    .popup_module.guide .text li::before {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hover effects for interactive elements */
.popup_module.guide .text li:hover {
    transform: translateX(5px);
    transition: transform 0.2s ease;
}

.popup_module.guide .highlight:hover {
}

/* Glass morphism effect for modern browsers */
@supports (backdrop-filter: blur(10px)) {
    .popup_module.guide {
    }
}

#popup_content .popup_content .popup_module.paid_success {
    padding: 50px 20px;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

#popup_content .popup_content .popup_module.paid_success .paid_message {
    position: relative;
    z-index: 1;
}

#popup_content .popup_content .popup_module.paid_success .success_icon_wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

#popup_content .popup_content .popup_module.paid_success .success_icon {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

#popup_content .popup_content .popup_module.paid_success .checkmark {
    width: 100%;
    height: 100%;
}

#popup_content .popup_content .popup_module.paid_success .checkmark_circle {
    stroke: #4caf50;
    stroke-width: 2;
    stroke-miterlimit: 10;
    fill: none;
    animation: paid_success_stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

#popup_content .popup_content .popup_module.paid_success .checkmark_check {
    stroke: #4caf50;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: paid_success_stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}



#popup_content .popup_content .popup_module.paid_success .success_ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.2);
    animation: paid_success_ripple 1.5s ease-out infinite;
}


#popup_content .popup_content .popup_module.paid_success .success_title {
    font-size: 28px;
    font-weight: 700;
    color: #4caf50;
    margin: 0 0 16px 0;
    animation: paid_success_fadeInUp 0.6s ease-out 0.3s both;
}

#popup_content .popup_content .popup_module.paid_success .success_message {
    font-size: 16px;
    margin: 0 0 25px 0;
    line-height: 1.6;
    animation: paid_success_fadeInUp 0.6s ease-out 0.4s both;
}

#popup_content .popup_content .popup_module.paid_success .success_details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin: 0 0 30px 0;
    text-align: left;
    display: none;
    animation: paid_success_fadeInUp 0.6s ease-out 0.5s both;
}

#popup_content .popup_content .popup_module.paid_success .success_details .detail_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#popup_content .popup_content .popup_module.paid_success .success_details .detail_item:last-child {
    border-bottom: none;
}

#popup_content .popup_content .popup_module.paid_success .success_details .detail_label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

#popup_content .popup_content .popup_module.paid_success .success_details .detail_value {
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
}

#popup_content .popup_content .popup_module.paid_success .success_button {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    animation: paid_success_fadeInUp 0.6s ease-out 0.6s both;
    min-width: 150px;
}

#popup_content .popup_content .popup_module.paid_success .success_button:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

#popup_content .popup_content .popup_module.paid_success .success_button:active {
    transform: translateY(0);
}

@keyframes paid_success_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes paid_success_ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes paid_success_stroke {
    100% {
        stroke-dashoffset: 0;
    }
}