/* PWA Install Prompt Styles */
.pwa-install-prompt {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.pwa-install-prompt.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.pwa-prompt-content {
    background: linear-gradient(135deg, #003d5c 0%, #002f5b 100%);
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 90vw;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid rgba(148, 199, 55, 0.2);
}

.pwa-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.pwa-close-btn:hover {
    color: #fff;
}

.pwa-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pwa-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.pwa-title h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.pwa-title p {
    margin: 0.25rem 0 0 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.pwa-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pwa-devices {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.pwa-device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary-green);
}

.pwa-device i {
    font-size: 1.75rem;
}

.pwa-device span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pwa-install-btn {
    width: 100%;
    padding: 1rem;
    background: var(--color-primary-green);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(148, 199, 55, 0.3);
}

.pwa-install-btn:hover {
    background: #a8d948;
    box-shadow: 0 6px 20px rgba(148, 199, 55, 0.4);
    transform: translateY(-2px);
}

.pwa-features {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .pwa-prompt-content {
        padding: 1.5rem;
    }

    .pwa-devices {
        padding: 1rem;
    }

    .pwa-device i {
        font-size: 1.5rem;
    }
}