/* a2hs-popup.css - Styles for Add to Home Screen popup */

#a2hs-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#a2hs-popup.show {
    opacity: 1;
    pointer-events: all;
}

.a2hs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 7, 0.9);
    backdrop-filter: blur(4px);
}

.a2hs-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 15, 20, 0.95);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: popupSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupSlideIn {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.a2hs-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1c55d0, #00f0ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.a2hs-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.a2hs-icon svg path {
    stroke: white !important;
}

.a2hs-title {
    color: #00f0ff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.a2hs-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 0 0 30px 0;
    line-height: 1.5;
}

.a2hs-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.a2hs-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.a2hs-install {
    background: linear-gradient(135deg, #1c55d0, #00a8ff);
    color: white;
}

.a2hs-install:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.a2hs-install:active {
    transform: translateY(0);
}

.a2hs-dismiss {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.a2hs-dismiss:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.a2hs-dismiss:active {
    background: rgba(255, 255, 255, 0.05);
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .a2hs-content {
        padding: 30px 20px;
    }

    .a2hs-title {
        font-size: 20px;
    }

    .a2hs-text {
        font-size: 14px;
    }

    .a2hs-buttons {
        flex-direction: column;
    }

    .a2hs-btn {
        width: 100%;
    }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .a2hs-content {
        padding: 30px 20px;
    }

    .a2hs-title {
        font-size: 20px;
    }

    .a2hs-text {
        font-size: 14px;
    }

    .a2hs-buttons {
        flex-direction: column;
    }

    .a2hs-btn {
        width: 100%;
    }
}