.banner-container {
    width: 100%;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
}
.show-element {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 30px;
    z-index: 2;
}

.text-content {
    max-width: 70%;
}

.banner-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.banner-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.banner-cta {
    background-color: white;
    color: #6366F1;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.banner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.shield-icon {
    margin-right: 12px;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .banner-container {
        height: auto;
        padding: 20px 0;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .text-content {
        max-width: 100%;
        margin-bottom: 15px;
    }

    .banner-cta {
        margin: 0 auto;
    }
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.popup-container {
    background-color: #fff;
    border-radius: 16px;
    width: 480px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: popIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 90%;
}

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

.popup-image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.popup-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.4) 0%, rgba(139, 92, 246, 0.8) 100%);
}

.image-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 30px;
}

.image-content h2 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    color: #ffffff;
}

.image-content p {
    margin: 0;
    font-size: 16px;
    opacity: 0.95;
    max-width: 320px;
}

.popup-body {
    padding: 30px;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.benefit-item {
    width: 50%;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.benefit-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 18px;
    height: 18px;
    color: #8B5CF6;
}

.benefit-text {
    font-size: 14px;
    color: #4B5563;
    font-weight: 500;
    line-height: 1.3;
}

.login-button {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #6366F1;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.login-button:hover {
    background-color: #4F46E5;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 18px;
    z-index: 3;
}

.close-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.google-login {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid #E5E7EB;
    color: #4B5563;
    padding: 14px;
    border-radius: 10px;
    margin-top: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.google-login:hover {
    background-color: #F9FAFB;
    border-color: #D1D5DB;
}

.google-icon {
    margin-right: 10px;
}

.divider {
    display: flex;
    align-items: center;
    margin: 16px 0;
    color: #9CA3AF;
    font-size: 14px;
}

.divider:before, .divider:after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #E5E7EB;
}

.divider:before {
    margin-right: 10px;
}

.divider:after {
    margin-left: 10px;
}

.promo-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FF6B6B;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}