/* Banner Styles */
.global-info-banner {
    background: linear-gradient(135deg, #10b981 0%, var(--primaryGreen) 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    position: relative;
    animation: slideDown 0.5s ease-out;
    margin: .5rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-banner-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.close-banner-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.banner-text {
    flex: 1;
}

.banner-text b {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.banner-text p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
    align-items: center;
    gap: 4px;
}

.dojah-link {
    display: inline-flex;
    align-items: center;
    /* gap: 4px; */
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dojah-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.dojah-icon {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.banner-learn-more-btn {
    background: white;
    color: #10b981;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.banner-learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.banner-learn-more-btn:active {
    transform: translateY(0);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f3f4f6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #e5e7eb;
    color: #374151;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    padding: 40px 40px 20px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.verification-badge {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
    }
}

.modal-header h2 {
    font-size: 28px;
    color: #111827;
    /* margin-bottom: 8px; */
}

.modal-subtitle {
    font-size: 14px;
    color: #6b7280;
}

.modal-body {
    padding: 32px 40px;
}

.verification-step {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease-out backwards;
}

.verification-step:nth-child(1) { animation-delay: 0.1s; }
.verification-step:nth-child(2) { animation-delay: 0.2s; }
.verification-step:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-icon {
    min-width: 48px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}

.step-content h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 0 20px;
    border-top: 1px solid #e5e7eb;
    margin-top: 32px;
    font-size: 14px;
    color: #6b7280;
}

.dojah-logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 6px 12px;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dojah-logo-link:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.dojah-logo {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.dojah-text {
    font-weight: 600;
    color: #111827;
    font-size: 16px;
}

.trust-message {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    align-items: start;
    margin-top: 20px;
}

.trust-message svg {
    min-width: 20px;
    color: #d97706;
    margin-top: 2px;
}

.trust-message p {
    font-size: 13px;
    color: #92400e;
    line-height: 1.5;
}

.modal-footer {
    padding: 20px 40px 32px;
    text-align: center;
}

.banner-primary-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.banner-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.banner-primary-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-learn-more-btn {
        width: 100%;
        margin-top: 8px;
    }

    .modal-body,
    .modal-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .modal-header h2 {
        font-size: 24px;
    }

    .verification-step {
        gap: 16px;
    }

    .step-icon {
        min-width: 40px;
        width: 40px;
        height: 40px;
    }

    .step-content h3 {
        font-size: 16px;
    }
}

/* Smooth Scrollbar */
.modal-container::-webkit-scrollbar {
    width: 8px;
}

.modal-container::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: #059669;
}
