@charset "utf-8";

/* CSS Document */

.bgcrp { background-color: #fbfcfd; }
.bgcgb { background-color: rgb(107,209,238) !important; }
.bgcwb { background-color: #ebeff6; }
.bgclb { background-color: #d9cf89 !important; }
.bgcmb { background-color: #2b52a3; }
.bgcdb { background-color: #222c6b; }
.container { max-width: 1140px; }
.container-md { max-width: 1320px; }
.texsha { text-shadow: 0 1px 2px rgba(0,0,0,0.6); }

        .share-btn {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 15px 30px;
            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);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .share-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
        }

        .share-btn:active {
            transform: translateY(0);
        }

        .share-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .share-icon {
            width: 20px;
            height: 20px;
        }

        .spinner {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .feedback {
            margin-top: 20px;
            padding: 12px 20px;
            border-radius: 10px;
            font-weight: 500;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feedback.show {
            opacity: 1;
        }

        .feedback.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .feedback.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        .support-info {
            margin-top: 30px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            font-size: 14px;
            color: #666;
        }

        .support-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 8px;
        }

        .supported {
            background: #28a745;
        }

        .not-supported {
            background: #dc3545;
        }
