/* アプリを開くボタンの修正スタイル */
.app-open-button {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border: 2px solid #3b82f6 !important;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3) !important;
    transition: all 0.2s ease-in-out !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.app-open-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 10px -1px rgba(59, 130, 246, 0.4) !important;
    color: #ffffff !important;
}

.app-open-button:active {
    transform: translateY(0px) !important;
    box-shadow: 0 2px 4px -1px rgba(59, 130, 246, 0.3) !important;
}

/* フォーカス時のスタイル（アクセシビリティ） */
.app-open-button:focus {
    outline: 2px solid #fbbf24 !important;
    outline-offset: 2px !important;
}

/* ダークモード対応 */
@media (prefers-color-scheme: dark) {
    .app-open-button {
        background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
        border-color: #2563eb !important;
        box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.4) !important;
    }
    
    .app-open-button:hover {
        background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%) !important;
        box-shadow: 0 6px 10px -1px rgba(37, 99, 235, 0.5) !important;
    }
}

/* より高いコントラスト比を確保 */
.app-open-button svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2)) !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .app-open-button {
        font-size: 16px !important;
        padding: 12px 16px !important;
    }
}
