/* Install Banner Styles */
#install-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    font-family: 'Fredoka', 'Baloo 2', 'Inter', sans-serif;
    padding: 20px;
}

#install-banner-content {
    background: linear-gradient(145deg, #2D3250 0%, #1A1C2C 100%);
    padding: 32px;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 217, 61, 0.3); /* goldPrimary with opacity */
    max-width: 360px;
}

#install-banner-icon {
    width: 96px;
    height: 96px;
    border-radius: 20px;
    background: #FFD93D; /* goldPrimary */
    margin-bottom: 24px;
    box-shadow: 0 8px 16px rgba(255, 217, 61, 0.3);
    padding: 12px;
}

#install-banner-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #FFD93D;
}

#install-banner-text {
    font-size: 16px;
    line-height: 1.5;
    color: #E2E8F0;
    margin-bottom: 32px;
}

.install-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    background: #FFD93D;
    color: #1A1C2C;
    text-decoration: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.install-button:active {
    transform: scale(0.95);
}

.install-button.pwa-button {
    background: transparent;
    border: 2px solid #FF9D3D;
    color: #FF9D3D;
}

#dismiss-install {
    font-size: 14px;
    color: #8E94AA;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 16px;
}
