/* Coming Soon Popup Styles */

/* Import Google Fonts for Hindi */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;600;700&display=swap');

/* Overlay */
.pk-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pk-popup-overlay.pk-popup-active {
    opacity: 1;
    visibility: visible;
}

/* Popup Container */
.pk-popup-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px 35px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
                opacity 0.3s ease;
}

.pk-popup-overlay.pk-popup-active .pk-popup-container {
    transform: scale(1);
    opacity: 1;
}

/* Close Button */
.pk-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.3s ease, transform 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.pk-popup-close:hover {
    color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.1);
    transform: rotate(90deg);
}

/* Icon */
.pk-popup-icon {
    margin-bottom: 20px;
    animation: pk-pulse 2s ease-in-out infinite;
}

@keyframes pk-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pk-popup-icon svg {
    display: inline-block;
}

/* Title */
.pk-popup-title {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

/* Message */
.pk-popup-message {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    margin: 0 0 30px 0;
}

/* Button */
.pk-popup-btn {
    font-family: 'Noto Sans Devanagari', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.pk-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.pk-popup-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pk-popup-container {
        padding: 35px 25px;
        max-width: 340px;
    }

    .pk-popup-title {
        font-size: 24px;
    }

    .pk-popup-message {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .pk-popup-btn {
        padding: 12px 35px;
        font-size: 16px;
    }

    .pk-popup-icon svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .pk-popup-container {
        padding: 30px 20px;
        max-width: 300px;
    }

    .pk-popup-title {
        font-size: 22px;
    }

    .pk-popup-message {
        font-size: 15px;
    }
}

/* Smooth cursor pointer for app links */
.pk-app-link {
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.pk-app-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}