/* Share Card in Payment Modal - Compact Version */
.share-card {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6347 100%);
    border-radius: 8px;
    padding: 8px 12px;
    margin: 8px auto 10px auto;
    width: 80%;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
    animation: share-card-glow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

@keyframes share-card-glow {
    0%, 100% {
        box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    }
}

.share-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: share-card-shine 3s infinite;
}

@keyframes share-card-shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.share-card-title {
    color: white;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.share-card-subtitle {
    color: white;
    font-size: 11px;
    text-align: center;
    margin-bottom: 6px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.share-card-button {
    background: white;
    color: #FF6347;
    border: none;
    border-radius: 15px;
    padding: 6px 20px;
    font-size: 12px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
    text-align: center;
}

.share-card-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.share-card-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.or-divider {
    text-align: center;
    color: #666;
    font-size: 12px;
    font-weight: bold;
    margin: 8px 0 6px 0;
    position: relative;
}

.or-divider::before,
.or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: #ddd;
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}
