/* ATEQ Pop-up Stilleri */
.ateq-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.ateq-popup-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ateq-popup {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(64, 176, 230, 0.3);
    position: relative;
    animation: slideUp 0.4s ease;
    border: 2px solid #40b0e6;
}

.ateq-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #40b0e6;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ateq-popup-close:hover {
    background: rgba(64, 176, 230, 0.1);
    transform: rotate(90deg);
}

.ateq-popup-title {
    color: #40b0e6;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
    margin-top: 1rem;
}

.ateq-popup-message {
    color: #e0e0e0;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.ateq-popup-brand {
    background: #2d2d2d;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(64, 176, 230, 0.4);
    border: 1px solid #40b0e6;
}

.ateq-popup-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.ateq-popup-button {
    background: #40b0e6;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.ateq-popup-button:hover {
    background: #2a8bb8;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(64, 176, 230, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .ateq-popup {
        padding: 2rem;
        max-width: 85%;
    }

    .ateq-popup-title {
        font-size: 1.5rem;
    }

    .ateq-popup-message {
        font-size: 1.1rem;
    }

    .ateq-popup-brand {
        padding: 1rem 1.5rem;
    }

    .ateq-popup-logo {
        max-width: 150px;
    }
}